标题带光晕的文字
栏目互联网时代
作者黄岩
发布2000年第43期
此例子能使文字的周围有由弱至强,循环变化的光晕出现。要点在于循环改变滤镜Glow中的决定光晕强度的Strength参数。
代码如下:
<html>
<head>
<script language="Javascript">
var strength=0;
function flash()
{window.document.all("flashing").style.filter="Glow(Color=#ffff00,Strength="+strength+")";
strength+=4;
if(strength>20)strength=0;
setTimeout("flash()",200);
}
</script>
</head>
<body bgcolor=blue onload="flash()">
<div id=flashing style="font-family:黑体;width:206;height:35;font-size=35;font-weight:bold;color='#ff0000'">
美 仑 美 奂
</body>
</html>