溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

js運(yùn)動(dòng)框架之側(cè)邊框

發(fā)布時(shí)間:2020-08-11 02:22:04 來(lái)源:網(wǎng)絡(luò) 閱讀:362 作者:水滴的歷程 欄目:軟件技術(shù)
<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>


向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI