您好,登錄后才能下訂單哦!
小編給大家分享一下js如何制作輪播圖效果,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
難點:
1、如何讓底下圓圈和圖片所對應自動動態生成
2、如何讓底下圓圈和圖片所對應的起來
3、上一頁和下一頁所在盒子所移動的距離
4、圖片切換時的漸出動畫效果
5、節流閥的概念
效果:
代碼:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> * { padding: 0; margin: 0; } a { text-decoration: none; color: white; line-height: 50px; text-align: center; } li { list-style: none; } .tb-promo { position: relative; width: 700px; height: 300px; margin: auto; overflow: hidden; } .tb-promo .imgg { position: absolute; top: 0; left: 0; width: 3000px; } .tb-promo .imgg li { float: left; } .tb-promo .imgg li img { width: 700px; height: 300px; } .tb-promo .prev { display: none; position: absolute; top: 125px; left: 0; width: 25px; height: 50px; background-color: rgba(0, 0, 0, 0.2); border-top-right-radius: 25px; border-bottom-right-radius: 25px; z-index: 999; } .tb-promo .prev:hover { background-color: rgba(0, 0, 0, 0.5); } .tb-promo .next { display: none; position: absolute; top: 125px; right: 0; width: 25px; height: 50px; background-color: rgba(0, 0, 0, 0.2); border-top-left-radius: 25px; border-bottom-left-radius: 25px; z-index: 999; } .tb-promo .next:hover { background-color: rgba(0, 0, 0, 0.5); } .tb-promo .promo-nav { position: absolute; top: 270px; left: 50%; margin-left: -40px; height: 25px; } .tb-promo .promo-nav li { float: left; width: 16px; height: 16px; background-color: white; border-radius: 8px; margin: 4px; } .tb-promo .promo-nav .one { background-color: tomato; } </style> </head> <body> <div class="tb-promo"> <a href="javascript:;" class="prev"><</a> <a href="javascript:;" class="next">></a> <ul class="imgg"> <li><img src="./61.jpeg" alt=""></li> <li><img src="./62.jpeg" alt=""></li> <li><img src="./63.jpeg" alt=""></li> </ul> <ol class="promo-nav"> </ol> </div> <script> var prev = document.querySelector('.prev'); var next = document.querySelector('.next'); var tbpromo = document.querySelector('.tb-promo'); var ul = document.querySelector('ul'); var ol = document.querySelector('ol'); //動畫函數 function animate(obj, target) { clearInterval(obj.timer);//調用防止點擊多次調用 obj.timer = setInterval(function () { var step = (target - obj.offsetLeft) / 10; step = step > 0 ? Math.ceil(step) : Math.floor(step); //正直和負值取整 if (obj.offsetLeft == target) { clearInterval(obj.timer); } else { obj.style.left = obj.offsetLeft + step + 'px'; } }, 10) } //生成動態導航圈圈 var tbpromWidth = tbpromo.offsetWidth; for (var i = 0; i < ul.children.length; i++) { var li = document.createElement('li'); ol.appendChild(li); //記錄索引號 通過自定義屬性 li.setAttribute('index', i); //排他思想 寫圓圈變色 li.addEventListener('click', function () { //清除所有圈圈顏色 for (var i = 0; i < ol.children.length; i++) { ol.children[i].className = ''; } this.className = 'one'; var index = this.getAttribute('index'); //點擊li 把li 的索引號分別給控制變量 num = index; circle=index; animate(ul, -index * tbpromWidth); }) ol.children[0].className = 'one'; } //克隆第一張圖片li放在最后面 無縫切換 var frist = ul.children[0].cloneNode(true); ul.appendChild(frist); //隱藏顯示 下一頁上一頁 tbpromo.addEventListener('mouseenter', function () { prev.style.display = 'block'; next.style.display = 'block'; clearInterval(timer); timer=0;//清除定時器變量 }) tbpromo.addEventListener('mouseleave', function () { prev.style.display = 'none'; next.style.display = 'none'; timer=setInterval(function () { next.click();//手動調動點擊事件 },1500) }) //next prev動畫 var num = 0; //控制圓圈 var circle = 0; //節流閥變量 var flag=true; //下一頁 next.addEventListener('click', function () { //最后一張進行判斷 ul復原 left為0 if (num == (ul.children.length - 1)) { ul.style.left = 0; num = 0; } num++; animate(ul, -num * tbpromWidth); circle++; if (circle == 3) { circle = 0; } for (var i = 0; i < ol.children.length; i++) { ol.children[i].className = ''; } ol.children[circle].className = 'one'; }) //上一頁 prev.addEventListener('click', function () { if (num == 0) { num = ul.children.length-1; ul.style.left = -num*tbpromWidth+'px'; } else { num--; animate(ul, -num * tbpromWidth); circle--; if (circle <0) { circle = 2; } for (var i = 0; i < ol.children.length; i++) { ol.children[i].className = ''; } ol.children[circle].className = 'one'; } }) //自動播放 var timer=setInterval(function () { next.click();//手動調動點擊事件 },2000) </script> </body> </html>
以上是“js如何制作輪播圖效果”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。