|
<html>
<head>
<title></title>
<SCRIPT Language="JavaScript">
<!--
timeID = 10;
stcnt = 16;
msg = "このサイトはJavaスクリプトの可能性を追求するサイトです。";
wmsg = new Array(56);
wmsg[0]=msg;
blnk = " ";
for (i=1; i<55; i++)
{
b = blnk.substring(0,i);
wmsg[i]="";
for (j=0; j<msg.length; j++) wmsg[i]=wmsg[i]+msg.charAt(j)+b;
function wiper()
{
if (stcnt > -1) str = wmsg[stcnt]; else str = wmsg[0];
if (stcnt-- < -30) stcnt=55;
status = str;
clearTimeout(timeID);
timeID = setTimeout("wiper()",50);
}
// -->
</SCRIPT>
</head>
<body onLoad="wiper()">
</body>
</html>
|