暈了暈了
????????window.onload?=?function(){ ????????????var?box?=?document.getElementById('box1'); ????????????box.onmouseover?=?function(){ ????????????????run(0); ????????????} ????????????box.onmouseout?=?function(){ ????????????????run(-100); ????????????} ????????} ????????????var?timer?=?null; ????????????function?run(tar){ ????????????????clearInterval(timer); ????????????????var?box?=?document.getElementById('box1'); ????????????????timer?=?setInterval(function(){ ????????????????????var?speed?=?(tar?-?box.offsetLeft)?/?20; ????????????????????speed?=?speed?>?0???Math.ceil(speed):Math.floor(speed); ????????????????????if(box.offsetLeft?==?tar){ ????????????????????????clearInterval(timer); ????????????????????}????else????{ ????????????????????????box.style.left?=?box.offsetLeft?+?speed?+'px'; ????????????????????} ????????????????},30); ????????????}
為什么會在left:133px處停下
2015-12-20
你是布局沒布好,加上這句試試