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

我的代码有错吗?为什么不执行?

// JavaScript Document
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.sytle.width=obj.offsetWidth+speed+'px';            
       }
    },30);
}

正在回答

1 回答

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.sytle.width=obj.offsetWidth+speed+'px';            //拼写错误
       }
    },30);
}

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

lqg 提问者

非常感谢!
2016-08-02 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

我的代码有错吗?为什么不执行?

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