實(shí)現(xiàn)輪播圖自動(dòng)切換就用JS,先看效果圖
第一種
//點(diǎn)擊按鈕,序號(hào)變化 showIdx++; if (showIdx == imgArr.length) { showIdx = 0; } //所有盒子左移動(dòng) for (let i = 0; i <items.length; i++) { items[i].style.left = parseFloat(items[i].style.left) - loopbox.offsetWidth + "px"; } //冗余容器從頁(yè)面中刪除 //當(dāng)冗余容器從頁(yè)面中移除后,為了保證結(jié)構(gòu)想對(duì)應(yīng),所以呀item中數(shù)組也要把這個(gè)容器刪除 let deleteBox = items.shift(); // console.log(items); deleteBox.remove(); //在用戶看不到的內(nèi)存中,變更【被從這個(gè)頁(yè)面刪除的元素的位置 deleteBox.style.left = "900px"; wrapper.appendChild(deleteBox); items.push(deleteBox); //把容器從小添加至壓面后,容器加載的圖片在當(dāng)前的下一站 // 第七步 把容器重新添加至頁(yè)面后,容器加載的圖片要是當(dāng)前這張的下一張 if (showIdx == imgArr.length - 1) { deleteBox.innerHTML = `<img src=${imgArr[0]}>`; } else { deleteBox.innerHTML = `<img src=${imgArr[showIdx + 1]}>`; }
第二種,圖片切換,css代碼
html, body, ul, li { margin: 0; padding: 0; } a { text-decoration: none; } .loopbox { width: 1226px; height: 460px; background: #030; position: relative; overflow: hidden; } .box { width: 100%; height: 100%; float: left; transition: all .3s; position: absolute; left: 0; /* overflow: hidden; */ } .box.notran{ transition: none; } .box-item { /* width: 100%; */ width: 1226px; height: 100%; float: left; background: #f1f1f1; text-align: center; font-size: 24px; line-height: 100px; /* display: none; */ /* transition: all .3s; */ } .box-item img { width: 100%; height: 100%; /* 圖片適應(yīng) */ object-fit: cover; } .arrow { width: 60px; line-height: 30px; background: #f00; text-align: center; color: #f1f1f1; position: absolute; top: 50%; left: 10px; margin-top: -15px; border-radius: 15px; } .arrow:hover { background: #f60; } .arrow.arrow-right { left: auto; right: 10px; } .page { position: absolute; width: 100%; text-align: center; bottom: 10px; } .page li { display: inline-block; width: 80px; height: 8px; border-radius: 4px; background: #000; } /* .page li:first-child { background: #f90; } */ .page li:hover { background: #f60; } .page li.current { background: #f90; } .side-qq { width: 100px; height: 100px; background: #f00; /* position: fixed; */ position: absolute; right: 10px; top: 450px; } .navbar { width: 100%; background: #ccc; text-align: center; } .navbar.fixed { position: fixed; left: 0; top: 0; } .nav { height: 21px; }
js
<!DOCTYPE html> <html> <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> <link rel="stylesheet" href="./css/index.css"> </head> <body> <!-- 1.分析頁(yè)面結(jié)構(gòu) --> <div> <div id="box"> <div class="box-item curr"><img src="images/1.webp"></div> <div><img src="images/2.webp"></div> <div><img src="images/3.webp"></div> <div><img src="images/4.webp"></div> </div> <a class="arrow arrow-left" href="javascript:;">左</a> <a class="arrow arrow-right" href="javascript:;">右</a> <ul id="page"> <li></li> <li></li> <li></li> <li></li> </ul> </div> <script> // 1.5.初始化頁(yè)面,保證所有的圖片先拍成一排 let items = document.querySelectorAll(".box-item"); let lis = document.querySelectorAll(".page li"); let leftBtn=document.querySelector(".arrow-left") let box = document.querySelector(".box"); let loopbox = document.querySelector(".loopbox"); box.style.width = items.length * loopbox.offsetWidth + "px"; box.style.left = 0+"px"; // 2.分析功能入口 let rightBtn = document.querySelector(".arrow-right"); let showIdx = 0; rightBtn.onclick = function (){ items[showIdx].classList.remove("curr"); lis[showIdx].classList.remove("current"); showIdx ++; if(showIdx == 4){ showIdx = 0; } items[showIdx].classList.add("curr"); lis[showIdx].classList.add("current"); box.style.left = (-1) * showIdx * loopbox.offsetWidth + "px"; for(let i=0;i<lis.length;i++){ lis[i].onclick =function(){ items[showIdx].classList.remove("curr"); lis[showIdx].classList.remove("current"); showIdx=i; items[showIdx].classList.add("curr"); lis[showIdx].classList.add("current"); } } leftBtn.onclick = function(){ //第一張 消失(取消類名) items[showIdx].classList.remove("curr"); lis[showIdx].classList.remove("current"); showIdx --; //預(yù)知判斷 if(showIdx == -1){ //點(diǎn)擊之后,點(diǎn)擊之前意味著已經(jīng)在加,需要?dú)w零 showIdx = 3; } items[showIdx].classList.add("curr"); lis[showIdx].classList.add("current"); box.style.left = (-1) * showIdx * loopbox.offsetWidth + "px"; // 第二張 出現(xiàn)(添加類名)showIdx+1 }; for(let j=0;j<lis.length;j++){ lis[j].onclick = function(){ items[showIdx].classList.remove("curr"); lis[showIdx].classList.remove("current"); //選好變?yōu)辄c(diǎn)擊序號(hào)對(duì)應(yīng)結(jié)構(gòu) showIdx=j; items[showIdx].classList.add("curr"); lis[showIdx].classList.add("current"); } } } function time(){ items[showIdx].classList.remove("curr"); lis[showIdx].classList.remove("current"); showIdx ++; if(showIdx == 4){ showIdx = 0; } items[showIdx].classList.add("curr"); lis[showIdx].classList.add("current"); box.style.left = (-1) * showIdx * loopbox.offsetWidth + "px"; } for(let i=0;i<lis.length;i++){ lis[i].onclick =function(){ items[showIdx].classList.remove("curr"); lis[showIdx].classList.remove("current"); showIdx=i; items[showIdx].classList.add("curr"); lis[showIdx].classList.add("current"); } } setInterval(time,3000) </script> </body> </html>
學(xué)習(xí)要多實(shí)踐才可以多記住。
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/128223.html
摘要:小練習(xí)輪播圖組件任務(wù)描述在和上一任務(wù)同一目錄下面創(chuàng)建一個(gè)文件,在目錄中創(chuàng)建,并在其中編碼,實(shí)現(xiàn)一個(gè)輪播圖的功能。實(shí)現(xiàn)思路考察對(duì)節(jié)點(diǎn),定時(shí)器,事件的處理。 小練習(xí)3:輪播圖組件 任務(wù)描述在和上一任務(wù)同一目錄下面創(chuàng)建一個(gè)task0002_3.html文件,在js目錄中創(chuàng)建task0002_3.js,并在其中編碼,實(shí)現(xiàn)一個(gè)輪播圖的功能。 圖片數(shù)量及URL均在HTML中寫好 可以配置輪播的順...
摘要:實(shí)現(xiàn)一個(gè)非無(wú)限循環(huán)不自動(dòng)切換的輪播圖只需要幾張圖片和兩個(gè)按鈕簡(jiǎn)化部分兩個(gè)按鈕,幾張圖片假如有四張圖右側(cè)按鈕左側(cè)按鈕部分動(dòng)態(tài)添加刪除的屬性部分已是最后一張圖這是第一張圖 實(shí)現(xiàn)一個(gè)非無(wú)限循環(huán)不自動(dòng)切換的輪播圖只需要幾張圖片和兩個(gè)按鈕(簡(jiǎn)化) HTML部分 兩個(gè)按鈕,幾張圖片(假如有四張圖) 右側(cè)按鈕 左側(cè)按鈕 CSS部分 動(dòng)態(tài)...
摘要:綁定輪播事件然后是鼠標(biāo)移入移出事件的綁定鼠標(biāo)移入移出事件移入時(shí)停止輪播播放的定時(shí)器,移出后自動(dòng)開始下一張的播放。 通過(guò)上一篇文章的學(xué)習(xí),我們基本掌握了一個(gè)輪子的封裝和開發(fā)流程。那么這次將帶大家開發(fā)一個(gè)更有難度的項(xiàng)目——輪播圖,希望能進(jìn)一步加深大家對(duì)于面向?qū)ο蟛寮_發(fā)的理解和認(rèn)識(shí)。 So, Lets begin! 目前項(xiàng)目使用 ES5及UMD 規(guī)范封裝,所以在前端暫時(shí)只支持標(biāo)簽的引入方式...
摘要:鼠標(biāo)放到輪播圖的圖片上時(shí)不再自動(dòng)輪播并且左右箭頭顯示出來(lái),鼠標(biāo)移開時(shí)左右箭頭隱藏掉并且自動(dòng)輪播。核心原理清除定時(shí)器,綁定事件,重構(gòu)下代碼封裝出往右往左輪播函數(shù)和自動(dòng)輪播函數(shù)。 需求與分析 需求:循環(huán)無(wú)縫自動(dòng)輪播五張圖,按左右箭頭可以手動(dòng)切換圖片,鼠標(biāo)點(diǎn)擊輪播圖下面按鈕 1 2 3 4 5會(huì)跳轉(zhuǎn)到對(duì)應(yīng)的第1 2 3 4 5張圖片。鼠標(biāo)放到輪播圖的圖片上時(shí)不再自動(dòng)輪播并且左右箭頭顯示出來(lái),...
摘要:鼠標(biāo)放到輪播圖的圖片上時(shí)不再自動(dòng)輪播并且左右箭頭顯示出來(lái),鼠標(biāo)移開時(shí)左右箭頭隱藏掉并且自動(dòng)輪播。核心原理清除定時(shí)器,綁定事件,重構(gòu)下代碼封裝出往右往左輪播函數(shù)和自動(dòng)輪播函數(shù)。 需求與分析 需求:循環(huán)無(wú)縫自動(dòng)輪播五張圖,按左右箭頭可以手動(dòng)切換圖片,鼠標(biāo)點(diǎn)擊輪播圖下面按鈕 1 2 3 4 5會(huì)跳轉(zhuǎn)到對(duì)應(yīng)的第1 2 3 4 5張圖片。鼠標(biāo)放到輪播圖的圖片上時(shí)不再自動(dòng)輪播并且左右箭頭顯示出來(lái),...
摘要:鼠標(biāo)放到輪播圖的圖片上時(shí)不再自動(dòng)輪播并且左右箭頭顯示出來(lái),鼠標(biāo)移開時(shí)左右箭頭隱藏掉并且自動(dòng)輪播。核心原理清除定時(shí)器,綁定事件,重構(gòu)下代碼封裝出往右往左輪播函數(shù)和自動(dòng)輪播函數(shù)。 需求與分析 需求:循環(huán)無(wú)縫自動(dòng)輪播五張圖,按左右箭頭可以手動(dòng)切換圖片,鼠標(biāo)點(diǎn)擊輪播圖下面按鈕 1 2 3 4 5會(huì)跳轉(zhuǎn)到對(duì)應(yīng)的第1 2 3 4 5張圖片。鼠標(biāo)放到輪播圖的圖片上時(shí)不再自動(dòng)輪播并且左右箭頭顯示出來(lái),...
閱讀 547·2023-03-27 18:33
閱讀 732·2023-03-26 17:27
閱讀 630·2023-03-26 17:14
閱讀 591·2023-03-17 21:13
閱讀 521·2023-03-17 08:28
閱讀 1801·2023-02-27 22:32
閱讀 1292·2023-02-27 22:27
閱讀 2178·2023-01-20 08:28