if(oDiv.offsterLeft == 0){
clearInterval(timer)
}
做到这个地方 好像清除没有实现 一直继续还在运动 不知道哪里出问题
clearInterval(timer)
}
做到这个地方 好像清除没有实现 一直继续还在运动 不知道哪里出问题
2014-12-18
最新回答 / Mike_Li
可以在超出界外清空之后,让位置再减去一个速度值,回到界内,即可。var oDiv=document.getElementById('photo'); oDiv.onmouseover=function(){ onMove(2); } oDiv.onmouseout=function(){ onMove(-2); } } var timer=null; function onMove(speed){ clearInterval(timer); var oDiv=document.getEle...
2014-12-10