很漂亮又常用的炫彩文字_文本链接特效

模板酷站
  •       2/5
  •       1
  •       2
  •       3
  •       4
  •       5
查看演示效果

      织梦DedeCMS视频教程买空间 租服务器 选网硕互联! 无忧站长工具,百度权重一键全查!

      一款很常用的CSS+JS炫彩文字,不停的闪烁发光,吸引人的注意力,直接复制代码到你的网页中就可以了。

      <html> <head> <title>炫彩文字</title> <meta http-equiv="mrc-Type" mrc="text/html;charset=gb2312"> <style> <!-- #glowtext{ filter:glow(color=ff0000,strength=2); width:100%; } --> </style> </head> <body> <script language="JavaScript1.2"> function glowit(which){ if (document.all.glowtext[which].filters[0].strength==2) document.all.glowtext[which].filters[0].strength=1 else document.all.glowtext[which].filters[0].strength=2 } function glowit2(which){ if (document.all.glowtext.filters[0].strength==2) document.all.glowtext.filters[0].strength=1 else document.all.glowtext.filters[0].strength=2 } function startglowing(){ if (document.all.glowtext&&glowtext.length){ for (i=0;i<glowtext.length;i++) eval('setInterval("glowit('+i+')",150)') } else if (glowtext) setInterval("glowit2(0)",150) } if (document.all) window.onload=startglowing </script> <span id="glowtext"><font color="F5D20A" size="2">模板无忧!</font></span> </body> </html>