当前位置:   article > 正文

(十)原生js案例之图片自动轮播与手动切换

(十)原生js案例之图片自动轮播与手动切换

改造之前的纯手动切换,现在加入自动轮播,鼠标移到图片上停止播放,可以实现手动切换,当鼠标离开图片上后自动轮播

实现效果

请添加图片描述

代码实现

  • 必要的css,html
    参照前面文章给的css,html

  • 业务逻辑修改

   window.onload = function () {
      const oPic = document.getElementById('pic')
      const oImg = oPic.querySelector('#pic img')
      const oUl = document.querySelector('#pic ul')
      const oLi = oUl.querySelectorAll('#pic ul li')
      const oSpan = document.querySelector('#pic span')
      const oP = document.querySelector('#pic p')
      const arrUrl = [
        './images/img1.png',
        './images/img2.png',
        './images/img3.png',
        './images/img4.png'
      ]
      const arrText = [
        '这是第一张图片',
        '这是第二张图片',
        '这是第三张图片',
        '这是第四张图片'
      ]
      //初始化
      let num = 0
      let timer = null
      init()
      function init() {
        oImg.src = arrUrl[num]
        oSpan.innerHTML = `数量:${num + 1} / 4`
        oP.innerHTML = arrText[num]
        for (var i = 0; i < oLi.length; i++) {
          oLi[i].classList.remove('active')
        }
        oLi[num].classList.add('active')
      }
      setTimeout(autoPlay,2000)
      tab()
      //点击切换图片
      function tab() {
        for (var i = 0; i < oLi.length; i++) {
          oLi[i].index = i
          oLi[i].onclick = function () {
            num = this.index
            init()
            for (var i = 0; i < oLi.length; i++) {
              oLi[i].classList.remove('active')
            }
            this.classList.add('active')
          }
        }
      }
      //鼠标经过停止轮播
      oPic.onmouseover = function () {
        clearInterval(timer)
      }

      //鼠标离开继续轮播
      oPic.onmouseout = function () {
        autoPlay()
      }

      //自动轮播
      function autoPlay() {
        clearInterval(timer)
        timer = setInterval(function () {
          num++
          num %= 4
          init()
        }, 1000)
      }
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68

可以对照着试试

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/861902
推荐阅读
相关标签
  

闽ICP备14008679号