多运动多样式

在这里插入图片描述

var aDiv = document.getElementsByTagName("div");
            aDiv[0].onclick = function(){
                //宽变为300
                starMove(this,"width",300);
            }
            aDiv[1].onclick = function(){
                //高变成300
                starMove(this,"height",300);
            }
            aDiv[2].onclick = function(){
                //marginLeft => 300
                starMove(this,"marginLeft",300);
            }
            aDiv[3].onclick = function(){
                //fontSize => 100
                starMove(this,"fontSize",100);
            }
            aDiv[4].onclick = function(){
                //fontSize => 100
                starMove(this,"opacity",100);
            }

            function starMove(node,attr,iTarget){
                clearInterval(node.timer);
                node.timer = setInterval(function(){
                    //计算速度
                    if(attr=="opacity"){
                        iCur = parseInt(parseFloat(getStyle(node,"opacity"))*100);
                    }else{
                        iCur = parseInt(getStyle(node,attr));
                    }
                    var speed = (iTarget - iCur) / 8;
                    speed = speed > 0 ? Math.ceil(speed) : Math.floor(speed);
                    if(iCur == iTarget){
                        clearInterval(node.timer);
                    }else{
                       if(attr=="opacity"){
                           iCur += speed;
                           node.style.opacity = iCur / 100;
                           node.style.filter = "alpha(opacity=" + iCur +")"
                       }else{
                        node.style[attr] = iCur + speed + "px";
                       }
                    }
                },30);

            }
            //获取当前有效样式浏览器兼容写法
            function getStyle(node,cssStr){
                return node.currentStyle ? node.currentStyle[cssStr]:getComputedStyle(node)[cssStr];
            }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值