简单动画封装



btn.onclick=function(){


animate(box,400)

}



function animate(obj,target){

     clearIntrval(obj.timer);


obj.timer=function(){


 obj.style.left=obj.offsetLeft+10+"px";    //obj.style.left带px;

if(obj.offsetLeft>=target){

clearInterval(obj.timer)

}

}


}

你可能感兴趣的:(简单动画封装)