W3School TIY
(请在下面的文本框中编辑您的代码,然后单击此按钮测试结果。)
编辑您的代码:
<html> <head> <script type="text/javascript"> var i=1 function starttimer() { document.getElementById('myimage').style.position="relative" document.getElementById('myimage').style.left=+i i++ timer=setTimeout("starttimer()",10) } function stoptimer() { clearTimeout(timer) } </script> </head> <body onload="starttimer()" onunload="stoptimer()"> <img id="myimage" src="../i/eg_smile.gif" tppabs="http://www.w3school.com.cn/i/eg_smile.gif" /> </body> </html>
查看结果: