问答详情
源自:4-1 JS多物体动画

不知道哪错了,就是运行不出来

window.onload=function(){

var aLi=document.getElementsByTagName('li');

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

aLi[i].timer=null;

aLi[i].onmouseover=function(){

startMove(this,400);

}

aLi[i].onmouseout=function(){

startMove(this,200);

}

}


function startMove(obj,iTarget){

clearInterval(obj.timer);

obj.timer=setInterval(function()

{

var speed=(iTarget-obj.offsetWidth)/8;

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


if(obj.offsetWidth==iTarget)

{

clearInterval(obj.timer);

}

else{

obj.style.Width=obj.offsetWidth+speed+'px';

}

},10)

}


提问者:慕用7235999 2017-07-25 16:15

个回答

  • 慕用7235999
    2017-07-30 18:07:42

    知道了,谢谢

  • xiaojidream1314
    2017-07-25 18:47:45

    obj.style.width中的width小写,js是区分大小写的,你再试试