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

封装变速动画

时间:2019-05-24 23:59:12      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:floor   cti   ams   back   @param   nim   span   ack   margin   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        #box {
            width: 100px;
            height: 100px;
            background-color: lightcoral;
            position: absolute;
            margin-top: 30px;
            left: 0px;

        }
    </style>
</head>
<body>
<button id="btn1">点击移动到400px</button>
<button id="btn2">点击移动到800px</button>
<div id="box"></div>
<script src="common.js"></script>
<script>
    //封装变速动画
    //@params : 元素  目标位置
    function animateBian(element, target) {
        clearInterval(element.timeId);
        element.timeId = setInterval(function () {
            //获取当前的元素的位置
            var current = element.offsetLeft;
            //设置移动的步数
            var step = (target - current)/10;
            //判断步数 > 0, 则向上取整 ,否则向下取整
            step = step > 0 ? Math.ceil(step) : Math.floor(step);
            //获取每次移动后的left值
            current += step;
            element.style.left = current + "px";
            if(current == target){
                clearInterval(element.timeId);
            }
            console.log("目标位置:" + target + ",每次移动的步数" + step +",当前位置:" + current );
        },10)
    }

    my$("btn1").onclick = function () {
        animateBian(my$("box"), 400);
    }
    my$("btn2").onclick = function () {
        animateBian(my$("box"), 800);

    }


</script>
</body>
</html>

 

封装变速动画

标签:floor   cti   ams   back   @param   nim   span   ack   margin   

原文地址:https://www.cnblogs.com/Ironman725/p/10920726.html

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