51help TIY
码:
<html> <head> <style> a { color:black; width:150; font:bold; } </style> <script type="text/javascript"> var i function glow() { i=0 interval=setInterval("makeglow(myLink)",10) } function back() { clearInterval(interval) document.getElementById('myLink').style.filter=false } function makeglow() { i++ if (i<5) { document.getElementById('myLink').style.filter="glow(color=#FF00FF,strength=" + i + ")" } else if (window.interval) { clearInterval(interval) } } </script> </head> <body> <a href="../index.html" tppabs="http://www.51help.tk/index.html" id="myLink" onmouseover="glow()" onmouseout="back()"></a> </body> </html>
查看结果: