原生javascript實現(xiàn)勻速運動動畫效果
更新時間:2016年02月26日 14:13:24 投稿:lijiao
這篇文章主要為大家詳細介紹了原生javascript實現(xiàn)勻速運動動畫效果,具有一定的參考價值,感興趣的小伙伴們可以參考一下
本文向大家介紹一個javascript實現(xiàn)的動畫。點擊開始按鈕div會往右移動,點擊停止后,div停止移動,再點擊則繼續(xù)移動。請看下面代碼:
<html>
<head>
<meta charset="gb2312">
<head>
<title>javascript實現(xiàn)的簡單動畫</title>
<style type="text/css">
#mydiv
{
width:50px;
height:50px;
background-color:green;
position:absolute;
}
</style>
<script type="text/javascript">
window.onload=function()
{
var mydiv=document.getElementById("mydiv");
var start=document.getElementById("start");
var stopmove=document.getElementById("stopmove");
var x=0;
var flag;
function move()
{
x=x+1;
mydiv.style.left=x+"px";
}
start.onclick=function()
{
clearInterval(flag);
flag=setInterval(move,20);
}
stopmove.onclick=function()
{
clearInterval(flag);
}
}
</script>
<body>
<input type="button" id="start" value="開始運動" />
<input type="button" id="stopmove" value="停止運動" />
<div id="mydiv"></div>
</body>
</html>
效果圖:

以上就是本文的全部內(nèi)容,希望對大家學習javascript程序設(shè)計有所幫助。
相關(guān)文章
js window.onload 加載多個函數(shù)的方法
平時做項目 經(jīng)常需要使用window.onload,但window.onload 不能同時加載多個函數(shù)。2009-11-11
javaScript 動態(tài)訪問JSon元素示例代碼
訪問JSon元素的方法有很多,在搜的時候會找到很多,本文使用javascript來動態(tài)訪問json元素,感興趣的朋友可以練練手哦2013-08-08

