码迷,mamicode.com
首页 > 其他好文 > 详细

缓速动画原理

时间:2016-12-24 13:40:45      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:position   rip   time   document   floor   span   math   click   ons   

<!DOCTYLE html>
<html>
<head>
    <meta charset="uft-8" />
    <style>
        #box {width:100px; height: 100px; background:#dfd; position:absolute; left:100px; top:100px;}
    </style>
</head>
<body>
<button id="btn">600</button>
<div id="box"></div>
</body>
</html>
<script>
    var btn = document.getElementById(‘btn‘);
    var box = document.getElementById(‘box‘);
    var target = 600;
    var step = 0;
    var timer = null;
    btn.onclick = function () {
        timer = setInterval(function () {
            step =(target - box.offsetLeft)/10;//要放到定时器里面 
            step = step > 0 ? Math.ceil(step) : Math.floor(step);
            box.style.left = box.offsetLeft+ step +‘px‘;
            if(box.offsetLeft>= target) {
                clearInterval(timer)
            }
            console.log(box.offsetLeft)
        },40)
    }
</script>

 

缓速动画原理

标签:position   rip   time   document   floor   span   math   click   ons   

原文地址:http://www.cnblogs.com/darkterror/p/6217059.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!