<script type="text/javascript">? ? ? ? ? ??window.onload=function(){var oDiv=document.getElementById('div1');//鼠標(biāo)移入oDiv.onmouseover=function(){? ? startmove(0);}//鼠標(biāo)移出oDiv.onmouseout=function(){ ??? ? startmove(-200); ? ? ? ? ? ? ? ? ? ? ??}}var timer=null;function startmove(target){ ?? ?clearInterval(timer);? ?var oDiv=document.getElementById('div1');? ? timer=setInterval(function(){? ? ? var speed=(target-oDiv.offsetLeft)/10;? ? ? ?speed=speed>0?Math.ceil(speed):Math.floor(speed);? ? if(oDiv.offsetLeft==target){ ? ??? ? ? ?clearInterval(timer);? ? }? ? else? ? ? ? {? ? ? ? ? ??? ? ? ? ?oDiv.style.left=oDiv.offsetLeft+speed+'px';? ? ? ??? ? ? ? } ??? ? },30);}? ? ? ? </script>
緩沖動畫問題,鼠標(biāo)移入它移動超過200,鼠標(biāo)移出退化就退回一半
慕粉4077240
2017-01-06 15:21:39