关于obj.offsetWidth和obj.style.Width的区别

来源:4-1 JS多物体动画

土爷

2016-01-04 15:55

<script type="text/javascript">

window.onload=function(){

aLi=document.getElementsByTagName('li');

for(var i=0,leg=aLi.length;i<leg;i++){

aLi[i].timer=null;

aLi[i].onmouseover=function(){

startMove(this,800);

}

aLi[i].onmouseout=function(){

startMove(this,200);

}

}

}

function startMove(obj,oTarget){

clearInterval(obj.timer);

obj.timer=setInterval(function(){

var speed=(oTarget-obj.offsetWidth)/3;

speed=speed>0?Math.ceil(speed):Math.floor(speed);

if(oTarget==obj.offsetWidth){

clearInterval(obj.timer);

}else{

obj.style.width=obj.offsetWidth+speed+'px';//为什么这里不能用obj.style.width? 这两个属性有什么区别?

}

},30)

}

</script>


写回答 关注

1回答

JS动画效果

通过本课程JS动画的学习,从简单动画开始,逐步深入各种动画框架封装

113925 学习 · 1443 问题

查看课程

相似问题