原生javascript實現勻速運動動畫效果_javascript技巧

來源:互聯網
上載者:User

本文向大家介紹一個javascript實現的動畫。點擊開始按鈕div會往右移動,點擊停止後,div停止移動,再點擊則繼續移動。請看下面代碼:

<html> <head> <meta charset="gb2312"> <head><title>javascript實現的簡單動畫</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>

效果圖:

以上就是本文的全部內容,希望對大家學習javascript程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.