سفارش تبلیغ
صبا ویژن
انواع کد جاوا 7 - هرآنچه می آموزی به دیگران نیز بیاموز
RSS
::
خانه
::
ارتباط با من
::
درباره من
::
پارسی بلاگ
هر کس جویای حکمت است، باید خاندان مرا دوست بدارد [پیامبر خدا صلی الله علیه و آله]
پارسی بلاگ، پیشرفته ترین سیستم مدیریت وبلاگ
اوقات شرعی
کل بازدیدها:3285 .:. بازدید امروز:3
درباره خودم
رضاالفت نسب
لینک به لوگوی من
جستجو در متن وبلاگ
جستجو:
اشتراک در خبرنامه
انواع کد جاوا 7
نویسنده: رضاالفت نسب
جمعه 85/7/28 ساعت 4:20 عصر
اتوماتیک صفحه را ماکزیمم می کند
<!--Powered by WWW.javakids.BLOGFA.COM-->
<!-- START OF Window Auto Maximize DHTML -->
<!-- SUMMARY BRIEF
This code will automatically maximize the
browser window when the page is loaded.
-->
<!-- Put this code inside of your <HEAD> tag. -->
<script language="JavaScript1.2">
<!--
top.window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
//-->
</script>
<!-- End with WWW.Javakids.BLOGFA.COM-->
ارسال ایمیل به صورت دکمه ای در حال حرکت
<!--Powered by WWW.javakids.BLOGFA.COM-->
<form name="form2" action=mailto:JAVAKIDS2@yahoo.com><!ایمیل خود را اینجا وارد کنید>
<input type="submit" name="banner" VALUE=".......Submit......." onClick="alert("آیا شما برای ارسال ایمیل آماده اید")">
<br>
</form>
<script language="JavaScript">
// Modified by CoffeeCup Software
var id,pause=0,position=0;
function banner()
{
// variables declaration
var i,k,msg=" MAIL ";
// increase msg
k=(10/msg.length)+1;
for(i=0;i<=k;i++) msg+=" "+msg;
// show it to the window
document.form2.banner.value=msg.substring(position,position+1000);
// set new position
if(position++==msg.length) position=0;
// repeat at entered speed
id=setTimeout("banner()",50); }
// end -->
banner();
</script>
<!-- End with WWW.Javakids.BLOGFA.COM-->
افکتی زیبا برای لینکها
<!--Powered by WWW.javakids.BLOGFA.COM-->
<head>
<script language="JavaScript">
fadeColor = "#40a0ec"; // رنگ مورد نظرتان را اینجا وارد کنید
stepIn = 20; // delay when fading in
stepOut = 20; // delay when fading out
/* set to true or false; true will
** cause all links to fade automatically
** (you won"t need to add class="fade")
***/
autoFade = true;
/* set to true or false; true will cause all CSS
** classes with "fade" in them to fade onmouseover
***/
sloppyClass = true;
/* set to true or false; true will make the script
** work for Macs (IE 5+), but you will have to give
** a name (name="blah") to each link that you want
** to fade.
***/
macCompat = false;
/**
**** </config>
**************/
/*************
**** <install>
**
Now, once you have customized your fading colors,
you need to include your customized .js file on
every page that you want to use it in. You can
include javascript files using this syntax (in
the head of a document):
Now that you have the file included, you need to
setup your links a small bit. Each link that you
want to fade needs to use the fade class.
Example:
<a href="blah.html" class="fade">click here</a>
Also, the link must be plain text. This means
that you can"t have <b>"s, <i>"s, <font>"s, etc.
inside of the link.
Example of what not to do:
<a href="blah.html" class="fade"><b>click</b> here</a>
Have fun!
-Anarchos-
**
**** </install>
**************/
hexa = new makearray(16);
for(var i = 0; i < 10; i++)
hexa[i] = i;
hexa[10]="a"; hexa[11]="b"; hexa[12]="c";
hexa[13]="d"; hexa[14]="e"; hexa[15]="f";
document.onmouseover = domouseover;
document.onmouseout = domouseout;
fadeColor = dehexize(fadeColor.toLowerCase());
var fadeId = new Array();
function dehexize(Color){
var colorArr = new makearray(3);
for (i=1; i<7; i++){
for (j=0; j<16; j++){
if (Color.charAt(i) == hexa[j]){
if (i%2 !=0)
colorArr[Math.floor((i-1)/2)]=(j)*16;
else
colorArr[Math.floor((i-1)/2)]+=(j);
}
}
}
return colorArr;
}
function domouseover() {
if(document.all){
var srcElement = event.srcElement;
if ((srcElement.tagName == "A" && autoFade && srcElement.className != "nofade") || srcElement.className == "fade" || (sloppyClass && srcElement.className.indexOf("fade") != -1)) {
if (!srcElement.startColor) {
srcElement.startColor = (srcElement.style.color)? srcElement.style.color: srcElement.currentStyle.color;
srcElement.startColor = dehexize(srcElement.startColor.toLowerCase());
}
var link = (macCompat? srcElement.name: srcElement.uniqueID);
if (link) fade(srcElement.startColor,fadeColor,link,stepIn);
else if (macCompat) alert("Error: Mac Compatility mode enabled, but link has no name.");
}
}
}
function domouseout() {
if (document.all){
var srcElement = event.srcElement;
if ((srcElement.tagName == "A" && autoFade && srcElement.className != "nofade") || srcElement.className == "fade" || (sloppyClass && srcElement.className.indexOf("fade") != -1)) {
var link = (macCompat? srcElement.name: srcElement.uniqueID);
if (link) fade(fadeColor,srcElement.startColor,link,stepIn);
}
}
}
function makearray(n) {
this.length = n;
for(var i = 1; i <= n; i++)
this[i] = 0;
return this;
}
function hex(i) {
if (i < 0)
return "00";
else if (i > 255)
return "ff";
else
return "" + hexa[Math.floor(i/16)] + hexa[i%16];
}
function setColor(r, g, b, element) {
var hr = hex(r); var hg = hex(g); var hb = hex(b);
element.style.color = "#"+hr+hg+hb;
}
function fade(s,e,element,step) {
var sr = s[0]; var sg = s[1]; var sb = s[2];
var er = e[0]; var eg = e[1]; var eb = e[2];
if (fadeId[0] != null && fade[0] != element && (fadeId[0])) {
var orig = (fadeId[0]);
setColor(orig.startColor[0],orig.startColor[1],orig.startColor[2],orig);
var i = 1;
while(i < fadeId.length) {
clearTimeout(fadeId[i]);
i++;
}
}
for(var i = 0; i <= step; i++) {
fadeId[i+1] = setTimeout("setColor(Math.floor(" +sr+ " *(( " +step+ " - " +i+ " )/ " +step+ " ) + " +er+ " * (" +i+ "/" +
step+ ")),Math.floor(" +sg+ " * (( " +step+ " - " +i+ " )/ " +step+ " ) + " +eg+ " * (" +i+ "/" +step+
")),Math.floor(" +sb+ " * ((" +step+ "-" +i+ ")/" +step+ ") + " +eb+ " * (" +i+ "/" +step+ ")),"+element+");",i*step);
}
fadeId[0] = element;
}</script>
</head>
<!-- End with WWW.Javakids.BLOGFA.COM-->
پیغام فعال بودن و یا نبودن جاوا در مرورگر بازدیدکننده = از اون کدهای توپه ها
<!--Powered by WWW.javakids.BLOGFA.COM-->
<h2><noscript><div align="center" dir="rtl" style="padding:2px;font:normal 600 9pt Tahoma;background-color:#F8E6CB;color:#000000;border:1px solid #97CCA8;" >در مرورگر شما Javascript فعال نیست. برای استفاده بهتر از این سایت آن را فعال کنید.</div></noscript>
<!-- End with WWW.Javakids.BLOGFA.COM-->
جستجوگر گوگل که دو گزینه داره یکی جستجو در این وبلاگ و جستجو در کل اینترنت = راهنما تو کد هست
<!--Powered by WWW.javakids.BLOGFA.COM-->
</div>
<div class =menu>
<div class =title>جستجوگر</div>
<FORM action=http://www.google.com/search method=get>
<DIV align=center>
<CENTER><TABLE style="BORDER-COLLAPSE: collapse" borderColor=#111111 height=146
cellSpacing=0 cellPadding=0 bgColor=#f8f8f8 border=0>
<TBODY>
<TR>
<TD height=146>
<P dir=ltr></P></TD>
<TD height=146>
<P dir=rtl><FONT style="FONT-SIZE: 8pt" face=Tahoma><A
href="http://www.Google.com/" target=_blank><IMG height=53 alt=Google
src="http://www.google.com/logos/Logo_40wht.gif" width=128
border=0></A><BR></FONT><SPAN style="FONT-SIZE: 8pt"><INPUT
style="FONT-FAMILY: Tahoma" maxLength=255 size=15 name=q></SPAN><BR><SPAN
style="FONT-SIZE: 8pt"><INPUT style="FONT-SIZE: 11px; FONT-FAMILY: Tahoma; HEIGHT: 22px" type=submit value=Search name=btnG></SPAN><FONT
face=Tahoma><SPAN style="FONT-SIZE: 8pt"> <INPUT type=hidden
value=www.javakids.blogfa.com <!در این مکان آدرس سایت یا وبلاگ خود را بنویسید >name=domains><BR><INPUT type=radio value=""
name=sitesearch> در کل اینترنت <BR><INPUT type=radio CHECKED
value=www.irlearn.com name=sitesearch> در این
سایت</SPAN><BR></FONT></P></TD></TR></TBODY></TABLE></CENTER></DIV><INPUT
type=hidden value=UTF-8 name=ie> <INPUT type=hidden value=UTF-8 name=oe> </FORM>
</div>
<!-- End with WWW.Javakids.BLOGFA.COM-->
نقل ازسلطان جاوا اسکریپ
نظرات دیگران ( )