Mr iNFiNiTi |
11-14-2012 02:51 PM |
رد: مكتبة اكواد جافا [ متجدد.. ]
نص مشع
كود:
<span id="str28" style="width:100%">
<font color="#FFF9F2" size="5" face="Monotype Koufi ,Arial">
<strong>صقور الابداع</strong></font>
</span><script language="JavaScript"><!--
// Visit http://www.star28.com/ for more code
//range of glowing
var from = 3;
var to = 7;
//speed of pulsing
var delay = 85;
//color of glow, name or RGB value (example:'#')
var glowColor = "#99FF33";
//NO MORE EDITING!!!
var i = to;
var j = 0;
//can be called here or whenever you want the text to start pulsing
textPulseDown();
function textPulseUp()
{
if (!document.all)
return
if (i < to)
{
str28.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i++;
theTimeout = setTimeout('textPulseUp()',delay);
return 0;
}
if (i = to)
{
theTimeout = setTimeout('textPulseDown()',delay);
return 0;
}
}
function textPulseDown()
{
if (!document.all)
return
if (i > from)
{
str28.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i--;
theTimeout = setTimeout('textPulseDown()',delay);
return 0;
}
if (i = from)
{
theTimeout = setTimeout('textPulseUp()',delay);
return 0;
}
}
// --></script>
يوضع في : Body
|