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)
}
}
}