微信公众号 
图码生活

每天发布有五花八门的文章,各种有趣的知识等,期待您的订阅与参与
电脑报 1992-2001 十年文章全集
电脑报 1992-2001 十年文章全集
包含从 1992 年 - 2001 年间,两万余篇期刊文章,查询最少输入两个字符
随便看看
读取中
读取中
标题带光晕的文字
栏目互联网时代
作者黄岩
发布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>