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

js多物体运动中的问题

js多物体运动中的问题

前端小学生a 2017-05-23 17:03:58
<!DOCTYPE html><html><head><meta charset="UTF-8"><title>多物体运动</title><style>*{margin:0;padding:0;}div{width:200px;height:100px;background:#abc;margin-bottom: 20px;}</style></head><body><div></div><div></div><div></div><script>window.onload = function(){var iDiv = document.getElementsByTagName("div");for(var i = 0 ;i < iDiv.length;i++){iDiv[i].onmouseover = function(){startMove(this,400);};iDiv[i].onmouseout = function(){startMove(this,200);};}};function startMove(obj,destination){clearInterval(obj.timer);    //将此处改为 obj.timer = null;为什么运行之后在为到达目的地时候鼠标移除div会抽搐obj.timer = setInterval(function(){var speed = (destination - obj.offsetWidth)/8;speed = speed > 0 ? Math.ceil(speed) : Math.floor(speed);if(destination == obj.offsetWidth){clearInterval(obj.timer);}else{obj.style.width = obj.offsetWidth + speed +"px";} },30);}</script></body></html>
查看完整描述

目前暂无任何回答

  • 0 回答
  • 0 关注
  • 1025 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信