网页特效:鼠标经过变色文字
AI摘要
由 AI 生成 · 仅供参考
很实用的效果,代码也不多。 html head title /title /head body p onmousemove=hello()font size=3 face=宋体鼠标经过变色文字,试试。/font/p pscript language=VBscript sub hello document.fgColor=int(256*256*256*rnd) end sub /script /body /html
很实用的效果,代码也不多。
<html>
<head>
<title> </title>
</head>
<body>
<p onmousemove="hello()"><font size="3" face="宋体">鼠标经过变色文字,试试。</font></p>
<p><script language="VBscript">
sub hello
document.fgColor=int(256*256*256*rnd)
end sub
</script>
</body>
</html>
版权声明:本文由驱动中国整理发布,转载需注明出处与原文链接。如有疑问请联系
editor@qudong.com。
本文价值
★★★★★
—
成为第一个评分的人
登录后为本文打分
评论加载中…