带光晕的文字
代码如下:
<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>