为了账号安全,请及时绑定邮箱和手机立即绑定

求帮忙 看看哪里错了

window.onload=function(){

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

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

aLi[i].onmouseover=function(){

startMove(this,400);

}

aLi[i].onmouseout=function(){

startMove(this,200);

}

}

}

var timer=null;

function startMove(obj,iTarget){

clearInterval(timer);

timer=setInterval(function(){

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

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

if(obj.offsetWidth==iTarget){

clearInterval(timer);

}

else

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

}

}30)

}


正在回答

5 回答

定时器设置有问题,你设置的只是一个,应该设为aLi[i].timer=null; obj.temer=setInterval(function(){},30);

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

求帮忙 看看哪里错了

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信