簡易型エンドレススクロールパノラマのソースを提供します。

ファイルは index.html と写真のみです。
全て同じフォルダに入れます。jsファイルはありません。




index.htmlファイルは下記です。
en=2662 は写真の横サイズです。使用する写真に合わせて変更してください。
"ume2.jpg"を使用する写真のファイル名に変更してください。


<html> <head> <meta http-equiv="Content-Script-Type" content="text/javascript"> <meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS"> <title>一方向スクロールパノラマ</title> <script language="javascript"> x=0; rl=1; en=2662; //enは写真の横幅−1280(パソコンの横幅pix):多少調整してください function mv() { setTimeout("mv()",10); x=x+rl; if(x>en+100){x=en;rl=-30;} if(x<-100){x=-100;rl=1;}   scroll(x,0); } </script> </head> <body bgcolor="#000000" onLoad="mv()"> <table border> <tr> <td> <img src="ume2.jpg"> </td> </tr> </table> <br> </body> </html> 以上