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

和老师的代码几乎一样,为什么我的不能缩回来?

<!DOCTYPE html>

<html>

<head>

  <meta charset="utf-8">

  <title>多物体运动</title>

  <style type="text/css">

   

    li{height: 150px;width:150px;background: #ccc;margin:30px;list-style: none;}

  </style>

  <script type="text/javascript">

  window.onload=function(){

  var aLi=document.getElementsByTagName("li")

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

  aLi[i].timer=null;

  aLi[i].onmouseover=function() {

  moveFun(this,400);

  }

  aLi[i].onmouseout=function() {

  // body...

  moveFun(this,400);

  }


  }


   

  }


  function moveFun(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';

  }

 

  },30)


  }


  </script>


</head>

<body>



<ul>

<li></li>

<li></li>

<li></li>

</ul>



</body>

</html>>


正在回答

1 回答

  aLi[i].onmouseout=function() {

  // body...

  moveFun(this,400);

 因为你鼠标移出的时候目标值还是400,移入的时候已经达到400了,当然移出的时候不会变了

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

WengWang 提问者

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

举报

0/150
提交
取消

和老师的代码几乎一样,为什么我的不能缩回来?

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