中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

原生JavaScript如何實現輪播圖效果

發布時間:2021-09-24 10:48:33 來源:億速云 閱讀:106 作者:小新 欄目:開發技術

這篇文章主要介紹原生JavaScript如何實現輪播圖效果,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

一、功能:

1、每隔2.5s自動切換下一張輪播圖;

2、底部按鈕切換對應輪播圖;

3、鼠標移入暫停自動切換,移出開始;

4、鼠標移入,左右切換按鈕出現,并可左右切換輪播圖。

二、效果(GIF):

原生JavaScript如何實現輪播圖效果

三、代碼:

結構層(HTML)

<div class="box">
 <img src="./image/banner1.jpg" />
 <div class="arrows left">
  <img src="./image/left.png" />
 </div>
 <div class="arrows right">
  <img src="./image/right.png" />
 </div>
 <ul class="buttom"></ul>
</div>

表現層(CSS)

.box {
 width: 300px;
 height: 200px;
 background: #333;
 border-radius: 5px;
 overflow: hidden;
 margin: 0 auto;
 font-size: 0;
 position: relative;
 display: flex;
 align-items: center;
}
 
.box:hover .arrows{
 display: block;
}
 
.box img{
 width: 100%;
}
 
.arrows {
 width: 20px;
 text-align: center;
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
 z-index: 9;
 font-size: 30px;
 display: none;
}
 
.left{
 left: 10px;
}
 
.right{
 right: 10px;
}
 
.buttom{
 list-style: none;
 margin: 0;
 padding: 0;
 display: flex;
 justify-content: center;
 position: absolute;
 bottom: 10px;
 left: 50%;
 transform: translateX(-50%);
}
 
.buttom li {
 width: 20px;
 height: 5px;
 border-radius: 1px;
 background: #fff;
 margin: 0 2px;
}
 
.active {
 background: red !important;
}

行為層(JavaScript)

let count = 0 // 創建當前輪播圖下標
// 獲取DOM元素
let box = document.querySelector('.box')
let img = document.querySelector('img')
let left = document.querySelector('.left')
let right = document.querySelector('.right')
let ul = document.querySelector('ul')
 
// 輪播圖片數組
let imgArr = [
 './image/banner1.jpg',
 './image/banner2.jpg',
 './image/banner3.jpg',
 './image/banner4.jpg'
]
 
// 遍歷圖片數組 添加對應底部切換li標簽
imgArr.forEach(() => {
 let li = document.createElement('li')
 ul.appendChild(li)
})
 
let lis = document.querySelectorAll('li') // 獲取所有li標簽
lis[0].className = 'active' // 給第一個li標簽添加選中狀態
 
// 執行切換輪播圖
function switchImg (type) {
 return function() {
  if(type == 1) {
   if(count - 1 < 0) {
    count = imgArr.length - 1
   } else {
    count += -1
   }
  } else {
   if(count + 1 >= imgArr.length) {
    count = 0
   } else {
    count += 1
   }
  }
  img.src = imgArr[count]
  lis.forEach((v,i) => {
   lis[i].className = ''
   if(i == count) {
    lis[i].className = 'active'
   }
  })
 }
}
 
left.addEventListener('click', switchImg(1)) // 上一張輪播圖
right.addEventListener('click', switchImg(2)) // 下一張輪播圖
// 點擊底部li標簽切換輪播圖
lis.forEach((value,index) => {
 lis[index].addEventListener('click', () => {
  lis.forEach((v,i) => {
   lis[i].className = ''
  })
  count = index
  img.src = imgArr[count]
  lis[count].className = 'active'
 })
})
// 創建定時器 每隔2.5s自動切換下一張輪播圖
let swiper = setInterval(() => {
 right.click()
},2500)
// 鼠標移入暫停自動切換
box.onmouseenter = () => {
 clearInterval(swiper)
}
// 鼠標移出開始自動切換
box.onmouseleave = () => {
 swiper = setInterval(() => {
  right.click()
 },1500)
}

以上是“原生JavaScript如何實現輪播圖效果”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

js
AI

当雄县| 屯门区| 铜鼓县| 华蓥市| 巴中市| 武宣县| 苗栗市| 环江| 乐至县| 金坛市| 涞源县| 泸西县| 邵东县| 元氏县| 贞丰县| 宕昌县| 鄂托克旗| 九江市| 安阳市| 达孜县| 肃宁县| 延寿县| 霍林郭勒市| 马山县| 醴陵市| 惠州市| 信阳市| 威海市| 彭泽县| 冀州市| 时尚| 长宁县| 曲阜市| 从江县| 临颍县| 石狮市| 姜堰市| 思茅市| 新巴尔虎右旗| 高邮市| 类乌齐县|