| | |
|
искрящийся текст
...
<span id="theText" style="width:100%">
<h1 align="center"><b><font face="Comic Sans MS" color="#FFFF00">
www.yanakayevs.narod.ru
</font></b></h1>
</span><script>
<!--
//величина сияния от и до
var from = 5;
var to = 15;
//скорсть сияния
var delay = 60;
//цвет сияния, имя в rgb (пример:'#ffd200') или именованный
var glowColor = "ffd200";
//не менять!!!
var i = to;
var j = 0;
textPulseDown();
function textPulseUp()
{ if (!document.all) return if (i < to) {
theText.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) {
theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i--;
theTimeout = setTimeout('textPulseDown()',delay);
return 0;
}
if (i = from) {
theTimeout = setTimeout('textPulseUp()',delay);
return 0;
}
}
//-->
</script>
...
|
| |
| | |