实现的发光字体.txt

来自「全部是制作动态网页的源代码」· 文本 代码 · 共 58 行

TXT
58
字号
<html>

<head>
<title>网页特效---通过滤镜实现的发光字体</title>
</head>

<body bgcolor="#000000">

<p id="me1"
style="position: absolute; left: 155; top: -1; width: 668; height: 405; filter: glow(color=#ffff00, strength=00)"
align="center"><font face="隶书" size="7" color="#FFFF00"><strong><b>发光字体</b></strong></font></p>

<div align="center">
  <center>

<table border="0" width="91%" height="163">
  <tr>
    <td width="74%" height="33"></td>
  </tr>
  <tr>
    <td width="74%" height="118"><font color="#0000FF" face="方正粗倩简体">  
      字体发光的同时,变幻发光的强弱、颜色,将旁边的文字、图片照亮,与星光相互生辉,别有一番意境。</font><font
    color="#0000FF"><font face="方正粗倩简体">这里采用了</font><b>CSS</b><font face="方正粗倩简体">样式表单滤镜的强大功能,并且它们的参数由脚本语言来控制,这也是制作此类动画的一般方法,本例就使用</font><b>FrontPage</b><font face="方正粗倩简体"> </font><b>2000</b><font face="方正粗倩简体">通过滤镜来制作发光字体的效果。</font></font></td>
  </tr>
</table>
  </center>
</div>
<script language="vbscript">
dim i
dim j
i=0
j=0
sub window_onload()
me1.filters.glow.strength=i
me1.filters.glow.color=j
i=i+1
j=j+500
if i>250 then i=0
if j>26777215 then j=0
window.settimeout "window_onload()",100
end sub
</script>


<p> </p>

<p> </p>

<p> </p>

<p> </p>
<div style="position: absolute; top: 177; left: 302; width: 297; height: 116;index:3 "><font
face="方正粗倩简体">

<p></font> </p>
</div>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?