| 自動スクロール/縦編 |
↓
↓
↓
|
↓
↓
↓
CENTER ↓
↓
↓
|
↓
↓
↓
END
|
|
| ■<head>〜</head>内に下記を貼り付けてください。 |
<script language="JavaScript">
<!--
var i=0
function Scroll(){
if(i<3000){
i=i+50;
window.scroll(0,i);
setTimeout("Scroll()",100)
}else{
i=0;
}
}
// -->
</script> |
| ■<body>〜</body>内に下記を貼り付けてください。 |
<form>
<input type="button" value="START" onclick="Scroll()">
</form>
<table border="0" width="200" height="300" cellpadding="0" cellspacing="0">
<tr>
<td height="1000" align="center" valign="top">
<h2>↓<br>
<font color="#999999">↓</font><br>
<font color="#cccccc">↓</font>
</h2>
</td>
</tr>
<tr>
<td height="1000" align="center" valign="middle">
<h2>↓<br>
<font color="#999999">↓</font><br>
<font color="#cccccc">↓</font>
</h2>
<b>Center</b><br>
<h2>↓<br>
<font color="#999999">↓</font><br>
<font color="#cccccc">↓</font>
</h2>
</td>
</tr>
<tr>
<td height="1000" align="center" valign="bottom">
<h2>↓<br>
<font color="#999999">↓</font><br>
<font color="#cccccc">↓</font>
</h2>
<b>END</b>
</td>
</tr>
</table> |