JS封装单样式动画

 <style>
        .box{
            width: 100px;
            height: 100px;
            background-color: red;
            position: relative;
        }
    </style>
<div class="box"></div>
  //单样式动画封装
        // 参数:元素,要变化的样式,目标值
        function animate(el, target, styleName) {
            if (el.timer) {
                clearInterval(el.timer)
            }
            if (styleName == 'opacity') {
                target = target * 100
            }
            el.timer = setInterval(function () {
                var obj = getComputedStyle(el, null);//返回style样式
                if (styleName = 'opacity') {
                    var start = parseInt(obj[styleName] * 100)
                } else {
                    var start = parseInt(obj[styleName])//去掉px
                }
                //修正步长
                var step = (target - start) / 10
                if (Math.abs(step) < 1) {
                    step = step > 0 ? 1 : Math.floor(step)
                }
                if (styleName = 'opacity') {
                    el.style.opacity = (start + step) / 100
                } else {
                    // obj.styleName; 错误写法 styleName此时是变量
                    el.style[styleName] = start + step + 'px';
                }
                //达到终止条件
                if (target == step + start) {
                    clearInterval(el.timer)
                    el.timer = null
                }
            }, 16.7)
        }


        var box = document.querySelector('.box');
        box.onclick = function () {
            animate(box, 0.3, 'opacity')
        }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值