首页 > 代码库 > 多物体运动
多物体运动
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>多物体运动</title> <style type="text/css"> div { width: 100px; height: 50px; margin: 20px 0 0 0; background: green; } </style> <script type="text/javascript"> window.onload = function() { var aDiv = document.getElementsByTagName("div"); for (var i = 0; i < aDiv.length; i++) { aDiv[i].timer = null; //每个对象定义一个自己的定时器 aDiv[i].onmouseover = function() { move(this, "width", 1000); }; aDiv[i].onmouseout = function() { move(this, "width", 100); }; }; }; function getStyle(obj, attr) {//获取属性值 if (obj.currentStyle) { return obj.currentStyle[attr]; } else { return window.getComputedStyle(obj,false)[attr]; //return window.getComputedStyle(obj,false).getPropertyValue(attr); } }; function move(obj, attr, iTarget) { clearInterval(obj.timer); //关闭定时器 obj.timer = setInterval(function() { var iSpeed = (iTarget - parseInt(getStyle(obj, attr))) / 19; iSpeed = iSpeed > 0 ? Math.ceil(iSpeed) : Math.floor(iSpeed); if (parseInt(getStyle(obj, attr) == iTarget)) { clearInterval(obj.timer); } else { obj.style[attr] = parseInt(getStyle(obj, attr)) + iSpeed + "px"; }; }, 30); } </script> </head> <body> <div> </div> <div> </div> <div> </div> <div> </div> <div> </div> </body> </html>
多物体运动
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。