您好,登錄后才能下訂單哦!
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無(wú)標(biāo)題文檔</title> <style> #div1 {width:150px;height:200px;background:blue;left:-150px;top:100px;position:absolute;} #div1 span{width:25px;height:50px;position:absolute;left:150px;top:75px;background:yellow;line-height:25x;} </style> <script> window. () { var oDiv=document.getElementById('div1'); oDiv. () { startMove(0); }; oDiv. () { startMove(-150); }; }; var timer=null; function startMove(n1) { var oDiv=document.getElementById('div1'); clearInterval(timer); timer=setInterval(function () { var speed=0; //判斷變框所處位置相對(duì)于目標(biāo)位置,從而賦值速度大小 if(oDiv.offsetLeft>n1) { speed=-10; } else { speed=10; } if(oDiv.offsetLeft==n1) { clearInterval(timer); } else { oDiv.style.left=oDiv.offsetLeft+speed+'px'; } },30); }; </script> </head> <body> <div id="div1"> <span>分享</span> </div> </body> </html>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。