运动框架中级
多个物体同时运动 •例子:多个Div,鼠标移入变宽 –单定时器,存在问题 –每个Div一个定时器 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <style> div {width:100px; height:50px; background:red; margin-top:50px;} </style> <script> window.onload=function() { var aDiv=document.getElementsByTagName('div'); var i=0; for(i=0; i<aDiv.length; i++) { aDiv[i].timer=null; aDiv[i].onmouseover=function() { startMove(this, 3000); } aDiv