首頁 > web前端 > js教程 > 主體

js動畫之在指定時間內實現單方向勻速運動

巴扎黑
發布: 2017-07-20 14:16:18
原創
1079 人瀏覽過

具體程式碼如下

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        *{
            margin:0;
            padding:0;
        }
        #box{
            position:absolute;
            top:0;
            left:0;
            padding:0;
            width:100px;
            height:100px;
            background:lightblue;

        }</style>
</head>
<body>
    <div id=&#39;box&#39;></div>
    <script>//思想1:var oBox = document.getElementById('box');//实现一个匀速运动:在指定时间内完成动画:计算出总距离/总时间,然后求出对应的步长(每10ms走一步的话需要走多远)var maxLeft = (document.documentElement.clientWidth || document.body.clientWidth) - oBox.offsetWidth;var duration = 2000;var step = (maxLeft/duration)*10;var timer = window.setInterval(function(){var curLeft = utils.css(oBox,"left");
            curLeft+=step;if(curLeft>=maxLeft){
                window.clearInterval(timer);return;
            }
            utils.css(oBox,"left",curLeft);
        },10)//思想2:function Linear(t,b,c,d){//相对应的是time begin change durationreturn c*t/d+b        }var oBox = document.getElementById('box');var target = (document.documentElement.clientWidth || document.body.clientWidth) - oBox.offsetWidth;var begin = utils.css(oBox,'left'),change = target-begin;var duration = 2000,time = null;var timer = window.setInterval(function(){
            time+=10;if(time>=duration){
                utils.css(oBox,"left",target);
                window.clearInterval(timer);return;
            }var curPos = Linear(time,begin,change,duration);
            utils.css(oBox,"left",curPos)

        },10)</script>
</body>
</html>
登入後複製

 

#

以上是js動畫之在指定時間內實現單方向勻速運動的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板