日期:2014-05-18 浏览次数:20129 次
以下是程序代码<html> <head> <script type="text/javascript"> function shakeleft() { document.getElementById('myLink').style.position="relative" document.getElementById('myLink').style.left="3" timer=setTimeout("shakeright()",10) } function shakeright() { document.getElementById('myLink').style.left="0" timer=setTimeout("shakeleft()",10) } function stoptimer() { clearTimeout(timer) } </script> </head></font> <font face=Verdana><body> <a id="myLink" href="http://www.w3schools.com/" onmouseover="shakeleft()" onmouseout="stoptimer()">Mouse over this link</a> </body></font> <font face=Verdana></html></font> <a href="http://www.aiyiweb.com/HTML/jsrun/">欢迎访问爱易网WEB开发社区.网页脚本特效集</a> [Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]