使用原生的javascript封装动画函数(有callback功能)

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <style>
        #box {
            width: 100px;
            height: 100px;
            background-color: greenyellow;
            position: absolute;
        }
    </style>
</head>
<body>
<input type="button" value="按钮" id="btn"/>

<div id="box"></div>
<script>
    var btn = document.getElementById("btn");
    btn.onclick = function () {
        animate(box, {"height": 400, "width": 400, "borderRadius": 150, "left": 100, "top": 100}, function () {
            animate(box, {"height": 200, "width": 100, "borderRadius": 20, "left": 200, "top": 50}, function () {
                animate(box, {"height": 100, "width": 200, "borderRadius": 100, "left": 400, "top": 400})
            })
        })
    }
    function animate(obj, json, fn) {
        clearInterval(obj.timer);
        obj.timer = setInterval(function () {
            var isTrue = true;
            for (var k in json) {//{k:json[k]}
                var leader = parseInt(getAttr(obj, k)) || 0;//如果是nan的话,给一个默认值
                var step = (json[k] - leader) / 10;
                step = step > 0 ? Math.ceil(step) : Math.floor(step);//做一个判断,当step>0的时候,向上取整,保证至少为一;<0的时候,向下取整,保证至少为-1
                leader = leader + step;
                obj.style[k] = leader + "px";
                console.log("代码还在执行");
                if (leader != json[k]) {
                    isTrue = false;
                }
            }
            if (isTrue) {
                clearInterval(obj.timer);
                if (fn) {
                    fn();
                }
            }
        }, 15);
    }
    function getAttr(demo, attr) {
        if (window.getComputedStyle) {
            return window.getComputedStyle(demo, null)[attr];
        } else {
            return demo.currentStyle[attr];
        }
    }
</script>
</body>
</html>

 

转载于:https://www.cnblogs.com/7qin/p/9602209.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值