我的这个怎么停不下来
window.onload= function(){
var Odiv=document.getElementById("dIV1");
Odiv.onmouseover = function(){
starMove();
}
}
var timer=null;
function starMove(){
var Odiv=document.getElementById("dIV1");
timer=setInterval(function(){
if(Odiv.offsetLeft===0){
clearInterval(timer);
}else{
Odiv.style.left=Odiv.offsetLeft+10+"px";
}
},30)
}