JavaScript中實(shí)現(xiàn)無(wú)縫滾動(dòng)、分享到側(cè)邊欄實(shí)例代碼
來(lái)源:易賢網(wǎng) 閱讀:752 次 日期:2016-07-08 14:56:28
溫馨提示:易賢網(wǎng)小編為您整理了“JavaScript中實(shí)現(xiàn)無(wú)縫滾動(dòng)、分享到側(cè)邊欄實(shí)例代碼”,方便廣大網(wǎng)友查閱!

本文給通過(guò)js代碼實(shí)現(xiàn)無(wú)縫滾動(dòng),側(cè)邊欄效果,在項(xiàng)目中經(jīng)常會(huì)遇到,下面小編把代碼整理分享到腳本之家平臺(tái),供大家參考

直接給大家貼代碼了,代碼解決一起問(wèn)題!

下面一段代碼給大家介紹js無(wú)縫滾動(dòng)實(shí)例代碼:

代碼如下所示:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

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

*{margin:0px;

padding:0px;}

#div1{width:830px; height:166px; margin:50px auto;

position:relative;

background:white;

overflow:hidden;}

#div1 ul li{float:left; width:174px; height:166px; list-style:none;

}

ul{position:absolute;}

</style>

<script>

window.onload=function(){

var oDiv=document.getElementById('div1');

var oUl=oDiv.getElementsByTagName('ul')[0];

var aLi=oUl.getElementsByTagName('li');

var speed=3

oUl.innerHTML=oUl.innerHTML+oUl.innerHTML;

oUl.style.width=aLi[0].offsetWidth*aLi.length+'px';

function move (){

if(oUl.offsetLeft<-oUl.offsetWidth/2)

{

oUl.style.left='0';

}

if(oUl.offsetLeft>0)

{

oUl.style.left=-oUl.offsetWidth/2+'px';

}

oUl.style.left=oUl.offsetLeft+speed+'px';

};

var timer=setInterval(move,30);

oDiv.onmouseover=function(){

clearInterval(timer);

};

oDiv.onmouseout=function(){

timer=setInterval(move,30);

}

document.getElementsByTagName('a')[0].onclick=function(){

speed=-3;

};

document.getElementsByTagName('a')[1].onclick=function(){

speed=3;

};

};

</script>

</head>

<body>

<a href="javascipt:;">向左走</a>

<a href="javascipt:;">向右走</a>

<div id="div1">

<ul>

<li><img src="images/b01.jpg" /></li>

<li><img src="images/b02.jpg" /></li>

<li><img src="images/b03.jpg" /></li>

<li><img src="images/b04.jpg" /></li>

<li><img src="images/b05.jpg" /></li>

</ul>

</div>

</body>

</html>

分享到側(cè)邊欄js代碼如下所示:

代碼如下所示:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<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:100px; height:150px; background:#0F0; position:absolute; left:-100px;}

#div1 span{position:absolute; width:20px; height:60px; line-height:20px; background:#00F; right:-20px; top:50px;}

</style>

<script>

window.onload=function(){

var oDiv=document.getElementById('div1');

oDiv.onmouseover=function(){

startMove(10,0);

}

oDiv.onmouseout =function(){

startMove(-10,-100);

}

}

var timer=null;

function startMove(speed,locall){

var oDiv=document.getElementById('div1');

clearInterval(timer);

timer=setInterval(function(){

if(oDiv.offsetLeft==locall){

clearInterval(timer);

}

else{

oDiv.style.left=oDiv.offsetLeft+speed+'px'; 

}

},30);

}

</script>

</head>

<body>

<div id="div1">

<span>分享到</span>

</div>

</body>

</html>

以上所述是小編給大家介紹的JavaScript中實(shí)現(xiàn)無(wú)縫滾動(dòng)、分享到側(cè)邊欄實(shí)例代碼,代碼簡(jiǎn)單易懂

更多信息請(qǐng)查看網(wǎng)絡(luò)編程
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國(guó)考·省考課程試聽報(bào)名

  • 報(bào)班類型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 新媒體/短視頻平臺(tái) | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)