以下に示すように: コードをコピーしますコードは次のとおりです: < ;html> <br>//マウスをダブルクリックして画面をスクロールするコード<br>var currentpos,timer;<br>functionInitialize( )<br>{ <br> timer=setInterval("scrollwindow()",30);<br>}<br>function sc()<br>{<br> clearInterval(timer);<br>}<br>functionscrollwindow() <br>{<br> currentpos=document.body.scrollTop;<br> window.scroll(0, currentpos);<br> if(currentpos !=document.body.scrollTop)<br> { <br> sc( );<br> }<br>}<br>document.onmousedown=sc; //停止<br>document.ondblclick=initialize; //開始<br> <% for i=1 to 100%>スクロールする画面<% next%>