按照代码里的提示去改,文字大小都可以改的。
<table>
<SPAN id=theText style="WIDTH: 100%"></SPAN>
<SCRIPT>
<!--
var from = 1;
var to = 4;
var delay = 55; //闪的速度
var glowColor = "#FFCC00";//颜色
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>
<CENTER>
<BR><font size="2"><BR><FONT
style="PADDING-RIGHT: 1px; PADDING-LEFT: 1px; FILTER: glow(color=#9966FF,strength=3);PADDING-BOTTOM: 1px; COLOR: white; PADDING-TOP: 1px; HEIGHT: 10px ">阿海记得有这么句话: 多走并不意味着离出口更近</FONT>
</CENTER> </font>
</table>