大家在使用Dreamweaver中的時間線功能或以做出很有趣的動畫效果
演示一個簡單的動畫的制作過程
這個實例的效果是點擊網頁上的
<html>
<head>
<title>JavaScript Motion Sample</title>
<script language=
var movingID = null;
var scrolling = false;
function startMove()
{
var left = eval(div
if (left < document
div
else
div
movingID = setTimeout(
}
function stopMove()
{
clearTimeout(movingID);
}
</script>
</head>
<body>
<div id=
<table bgColor=
<tr>
<td>I can moving
</tr>
</table>
</div>
<br><br>
<input type=
<input type=
</body>
</html>
這裡主要使用了一個叫setTimeout(function
第一個參數
注意一點是如果要停止這個計時器
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/19691.html