久久福利_99r_国产日韩在线视频_直接看av的网站_中文欧美日韩_久久一

您的位置:首頁技術文章
文章詳情頁

JS輪播圖的實現方法2

瀏覽:89日期:2024-04-24 09:48:00

本文實例為大家分享了JS輪播圖的實現代碼,供大家參考,具體內容如下

需求:

自動輪播,鼠標移入輪播停止、移出繼續,小圓點點擊切圖,左右箭頭切圖

效果圖:

![輪播圖]

JS輪播圖的實現方法2

思路:

JS輪播圖的實現方法2

將所有需要輪播的圖片橫向排列,可視區大小設置為只能顯示一張圖片,給容器設置移出隱藏后,可視區之外的部分被隱藏,這樣我們就只能看見一張圖片。輪播實現是改變整個圖片畫幅的left值或者margin-left 值,當點擊時移動整個畫幅單個圖片的寬度即可實現滾動到下一張。后面功能實現順序依舊是寫法一里的思路。

戳!寫法一地址

HTML部分:

<div id='banner'> <div class='w'><!-- 左右箭頭--> <span class='iconfont icon-zuojiantou'></span> <span class='iconfont icon-youjiantou'></span><!-- 輪播圖--> <ul > <li><img src='http://www.gepszalag.com/bcjs/img/1.jpg' alt=''></li> <li><img src='http://www.gepszalag.com/bcjs/img/2.jpg' alt=''></li> <li><img src='http://www.gepszalag.com/bcjs/img/3.jpg' alt=''></li> </ul><!-- /小圓點--> <ol id='circleContainer'> </ol> </div></div>

CSS部分:

<style> *{ margin: 0; padding: 0; list-style: none; } .w { width: 1000px; height: 600px; margin: 100px auto 0; position: relative; overflow: hidden; } ul { width: 1000%; transition: all .5s ease-in-out; } ul li { float: left; width: 1000px; } ul li img { width: 100%; height: 600px; } .iconfont { color: white; position: absolute; font-size: 30px; top: calc(50% - 15px); background-color: rgba(216, 216, 216, 0.23); border-top-right-radius: 50%; border-bottom-right-radius: 50%; cursor: pointer; } .iconfont:hover { color: palegreen; } .icon-zuojiantou { left: 0; } .icon-youjiantou { right: 0; } #circleContainer { position: absolute; bottom: 10px; left: calc(50% - 30px); } #circleContainer li { display: inline-block; width: 20px; height: 20px; border-radius: 50%; background-color: white; margin-right: 5px; } #circleContainer .change { background-color: palegreen; }</style>

JS部分:

<script> let timer = setInterval(function () { arrow_r.onclick(); },2000); let w = document.querySelector('.w'); w.addEventListener('mouseenter',function () { clearInterval(timer); }); w.addEventListener('mouseleave',function () { clearInterval(timer); timer = setInterval(function () { arrow_r.onclick(); },2000); }); //獲取元素 let ul = document.querySelector('ul'); let ol = document.querySelector('#circleContainer'); let arrow_r = document.querySelector('.icon-youjiantou'); let arrow_l = document.querySelector('.icon-zuojiantou'); let ImgWidth = ul.children[0].offsetWidth; let location_i = 0 ; // 創建小圓點 動態生成小圓點,圖片增加時小圓點也隨之增加 for (let i = 0; i<ul.children.length;i++){ let li = document.createElement('li'); li.setAttribute('index',i); li.addEventListener('click',function () { let index = this.getAttribute('index'); move(ul,index); location_i = index ; }); ol.appendChild(li); } let liclone = ul.children[0].cloneNode(true); ul.appendChild(liclone); // 輪播函數 function move(targetObj,n) { if (n === targetObj.children.length ) { targetObj.style.marginLeft = '0px'; n = 0; } targetObj.style.marginLeft = -n * ImgWidth +'px'; for (let i =0 ;i<ol.children.length;i++){ ol.children[i].className = ''; } n === 3 ? ol.children[0].className = 'change': ol.children[n].className = 'change'; } ol.children[0].className = 'change'; // 右箭頭點擊 arrow_r.onclick = function () { if (location_i === 3) { location_i = 0 ; ul.style.marginLeft = '0px' ; } location_i++; move(ul,location_i); }; // 左箭頭點擊 arrow_l.addEventListener('click',function () { if (location_i == 0) { location_i = ul.children.length -1 ; } location_i--; move(ul,location_i); })</script>

精彩專題分享:jQuery圖片輪播 JavaScript圖片輪播 Bootstrap圖片輪播

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: JavaScript
相關文章:
主站蜘蛛池模板: 日韩精品极品视频在线 | 成人h动漫免费观看网站 | 日本黄色大片 | 日本aa级毛片免费观看 | 黄色免费视频 | 精品成人av | 成人网在线观看 | 三区视频 | 色网在线观看 | 91久久综合亚洲鲁鲁五月天 | 久久99久久98精品免观看软件 | 欧美成人高清 | 国产精品久久久爽爽爽麻豆色哟哟 | 日韩欧美国产精品 | 97国产精品视频人人做人人爱 | 综合网激情五月 | 日韩精品免费在线视频 | 欧美在线xxx | 国产免费成人 | 91精品国产高清一区二区三区 | 久久人人爽人人爽人人片av不 | 亚洲福利视频在线 | 国产在线不卡 | 久艹伊人 | 欧美国产视频一区 | 成人一区二区三区在线观看 | 欧美亚洲在线 | 亚洲成人一区二区 | 99亚洲| 爱干视频 | 午夜影院免费观看视频 | 免费在线看a | 国产欧美精品一区 | 国产精品看片 | 蜜桃精品久久久久久久免费影院 | 国产欧美精品一区二区三区 | 国产精品久久久久久久久久 | 国产欧美日韩 | 国产精品久久久一区二区三区 | 国产最新网址 | 国产私拍视频 |