最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

JS+HTML+CSS實(shí)現(xiàn)輪播效果

來源:懂視網(wǎng) 責(zé)編:小OO 時間:2020-11-27 22:24:41
文檔

JS+HTML+CSS實(shí)現(xiàn)輪播效果

本文實(shí)例為大家分享了Android九宮格圖片展示的具體代碼,供大家參考,具體內(nèi)容如下:1.lunbo.html代碼。<;<。DOCTYPE html>;<;html lang="en">;<;head>;<;meta charset="UTF-8">;<;title>;大輪播<;/title>;<;link rel="stylesheet" type="text/css" href="CSS/lunbo.css"/>;<;script src="JS/lunbo.js" type="text/javascript">;<;/script>;<;/head>;<;body>;<;<。
推薦度:
導(dǎo)讀本文實(shí)例為大家分享了Android九宮格圖片展示的具體代碼,供大家參考,具體內(nèi)容如下:1.lunbo.html代碼。<;<。DOCTYPE html>;<;html lang="en">;<;head>;<;meta charset="UTF-8">;<;title>;大輪播<;/title>;<;link rel="stylesheet" type="text/css" href="CSS/lunbo.css"/>;<;script src="JS/lunbo.js" type="text/javascript">;<;/script>;<;/head>;<;body>;<;<。

本文實(shí)例為大家分享了Android九宮格圖片展示的具體代碼,供大家參考,具體內(nèi)容如下

1.lunbo.html代碼:

<!DOCTYPE html> 
<html lang="en"> 
<head> 
 <meta charset="UTF-8"> 
 <title>大輪播</title> 
 <link rel="stylesheet" type="text/css" href="CSS/lunbo.css"/> 
 <script src="JS/lunbo.js" type="text/javascript"></script> 
</head> 
 
<body> 
<div id="container"> 
 <div id="list" style="left: -1350px;"> 
 <img src="image/banner_3.jpg"/> 
 <img src="image/banner_1.jpg"/> 
 <img src="image/banner_2.jpg"/> 
 <img src="image/banner_3.jpg"> 
 <img src="image/banner_1.jpg"/></div> 
 <div id="buttons"> 
 <span index="1"></span> 
 <span index="2"></span> 
 <span index="3"></span> 
 </div> 
 <a href="javascript:;" id="prev" class="arrow" style="font-size:100px; text-align:center;"><</a> 
 <a href="javascript:;" id="next" class="arrow" style="font-size:100px; text-align:center;">></a></div> 
</body> 
 
</html> 

2.CSS/lunbo.css代碼:

body { 
 margin: 0px; 
 padding: 0px; 
 width: 1350px; 
 height: 618px; 
} 
 
a { 
 text-decoration: none; 
} 
 
#container { 
 width: 1350px; 
 height: 618px; 
 overflow: hidden; 
 position: relative; 
 border-top: 1px solid #ac6a0a; 
} 
 
#list { 
 width: 6750px; 
 height: 618px; 
 position: absolute; 
 z-index: 1; 
} 
 
#list img { 
 float: left; 
 width: 1350px; 
 height: 618px; 
} 
 
#buttons { 
 position: absolute; 
 height: 20px; 
 width: 60px; 
 z-index: 2; 
 bottom: 20px; 
 left: 50%; 
} 
 
#buttons span { 
 cursor: pointer; 
 float: left; 
 border: 1px solid #ad6a0a; 
 width: 10px; 
 height: 10px; 
 -webkit-border-radius: 50%; 
 -moz-border-radius: 50%; 
 border-radius: 50%; 
 margin-right: 5px; 
} 
 
#buttons .on { 
 background: orangered; 
} 
 
.arrow { 
 cursor: pointer; 
 display: none; 
 line-height: 100px; 
 text-align: center; 
 width: 40px; 
 height: 40px; 
 position: absolute; 
 z-index: 2; 
 top: 180px; 
 background-color: RGBA(0, 0, 0, 0); 
 color: #fff; 
} 
 
.arrow:hover { 
 background-color: RGBA(0, 0, 0, 0); 
} 
 
#container:hover .arrow { 
 display: block; 
} 
 
#prev { 
 left: 10px; 
 color: #ffffff; 
} 
 
#next { 
 right: 10px; 
 color: #ffffff; 
} 

3.JS/lunbo.js代碼:

window.onload = function () { 
 var container = document.getElementById('container'); 
 var list = document.getElementById('list'); 
 var buttons = document.getElementById('buttons').getElementsByTagName('span'); 
 var prev = document.getElementById('prev'); 
 var next = document.getElementById('next'); 
 var index = 1; 
 var len = 3; 
 var animated = false; 
 var interval = 3000; 
 var timer; 
 var size = 1350; 
 
 function animate(offset) { 
 if (offset == 0) { 
 return; 
 } 
 animated = true; 
 var time = 300; 
 var inteval = 10; 
 var speed = offset / (time / inteval); 
 console.log("speed:" + speed); 
 var left = parseInt(list.style.left) + offset; 
 
 var go = function () { 
 if ((speed > 0 && parseInt(list.style.left) < left) || (speed < 0 && parseInt(list.style.left) > left)) { 
 list.style.left = parseInt(list.style.left) + speed + 'px'; 
 console.log(list.style.left); 
 setTimeout(go, inteval); 
 } else { 
 list.style.left = left + 'px'; 
 if (left > -200) { 
 list.style.left = -size * len + 'px'; 
 } 
 if (left < ( -size * len)) { 
 list.style.left = '-' + size + 'px'; 
 } 
 animated = false; 
 console.log("left:" + list.style.left); 
 } 
 } 
 go(); 
 } 
 
 function showButton() { 
 for (var i = 0; i < buttons.length; i++) { 
 if (buttons[i].className == 'on') { 
 buttons[i].className = ''; 
 break; 
 } 
 } 
 buttons[index - 1].className = 'on'; 
 } 
 
 function play() { 
 timer = setTimeout(function () { 
 next.onclick(); 
 play(); 
 }, 
 interval); 
 } 
 
 function stop() { 
 clearTimeout(timer); 
 } 
 
 next.onclick = function () { 
 if (animated) { 
 return; 
 } 
 if (index == len) { 
 index = 1; 
 } else { 
 index += 1; 
 } 
 animate(-size); 
 showButton(); 
 } 
 prev.onclick = function () { 
 if (animated) { 
 return; 
 } 
 if (index == 1) { 
 index = len; 
 } else { 
 index -= 1; 
 } 
 animate(size); 
 showButton(); 
 } 
 for (var i = 0; i < buttons.length; i++) { 
 buttons[i].onclick = function () { 
 if (animated) { 
 return; 
 } 
 if (this.className == 'on') { 
 return; 
 } 
 var myIndex = parseInt(this.getAttribute('index')); 
 var offset = -size * (myIndex - index); 
 
 animate(offset); 
 index = myIndex; 
 showButton(); 
 } 
 } 
 container.onmouseover = stop; 
 container.onmouseout = play; 
 play(); 
}; 

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

JS+HTML+CSS實(shí)現(xiàn)輪播效果

本文實(shí)例為大家分享了Android九宮格圖片展示的具體代碼,供大家參考,具體內(nèi)容如下:1.lunbo.html代碼。<;<。DOCTYPE html>;<;html lang="en">;<;head>;<;meta charset="UTF-8">;<;title>;大輪播<;/title>;<;link rel="stylesheet" type="text/css" href="CSS/lunbo.css"/>;<;script src="JS/lunbo.js" type="text/javascript">;<;/script>;<;/head>;<;body>;<;<。
推薦度:
標(biāo)簽: 制作 輪播 實(shí)現(xiàn)
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top