1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<html> <head></head> <body> <div id="time"></div> <a href="###">测试</a> <div style="height:500px;"></div> <div style="height:500px;"></div> <script type='text/javascript'> var shida_top, timer; function shida_stop() { timer = setInterval("shida_scrollwindow()", 1); } function shida_start() { clearInterval(timer); } function shida_scrollwindow() { shida_top = document.body.scrollTop; window.scroll(0, ++shida_top); if (shida_top != document.body.scrollTop) shida_start(); } document.onmousedown = shida_start; document.ondblclick = shida_stop; </script> </body> </html> |