IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> JS实现网页轮播图 -> 正文阅读

[JavaScript知识库]JS实现网页轮播图

<!DOCTYPE html>
<html lang="zh-CN">
<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>轮播图</title>
  <style>
    a {
      text-decoration: none;
      font-size: 30px;
      display: none;
      z-index: 2;
    }
    a:nth-child(1) {
      position: absolute;
      left: 0px;
      top: 27px;
    }
    a:nth-child(2) {
      position: absolute;
      right: 0px;
      top: 27px;
    }
    ul {
      margin: 0;
      padding: 0;
    }
    .focus {
      position: relative;
      width: 300px;
      height: 100px;
      overflow: hidden;
    }
    ul {
      position: absolute;
      top: 0px;
      left: 0px;
      width: 400%;
    }
    ul li {
      float: left;
      list-style: none;
      width: 300px;
      height: 100px;
    }
    ul li:nth-child(1) {
      background-color: pink;
    }
    ul li:nth-child(2) {
      background-color: skyblue;
    }
    ul li:nth-child(3) {
      background-color: purple;
    }
    ul li:nth-child(4) {
      background-color: pink;
    }
    ol {
      position: absolute;
      left: 106px;
      bottom: 11px;
      margin: 0;
      padding: 0;
    }
    ol li {
      float: left;
      list-style: none;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 2px solid #000;
      margin-left: 5px;
      cursor: pointer;
    }
    .current {
      background-color: #fff;
      border: 2px solid #fff;
    }
  </style>
</head>
<body>
  <div class="focus">
    <a href=""><</a>
    <a href="">></a>
    <ul>
      <li></li>
      <li></li>
      <li></li>
    </ul>
    <ol>
    </ol>
  </div>

  <script>
    let focus = document.querySelector('.focus')
    let left = document.querySelectorAll('a')[0]
    let right = document.querySelectorAll('a')[1]
    let items = document.querySelectorAll('ul li')
    let ol = document.querySelector('ol')
    ul = document.querySelector('ul')
    // 图片滑动动画函数
    function animate (element, target, callback) {
      clearInterval(element.timer)
      element.timer = setInterval(() => {
        if (element.offsetLeft == target) {
          clearInterval(element.timer)
          callback && callback()
        } 
        let cur_distance = (target - element.offsetLeft) > 0 ? Math.ceil((target - element.offsetLeft) / 10) : Math.floor((target - element.offsetLeft) / 10)
        element.style.left = element.offsetLeft + cur_distance + 'px'
      }, 15)
    }
    for (let i = 0; i < items.length; i++) {
      let li = document.createElement('li')
      li.setAttribute('index', i)
      ol.append(li)
    }
    ol.children[0].className = 'current'
    focus.addEventListener('mouseenter', () => {
      left.style.display = 'block'
      right.style.display = 'block'
      clearInterval(timer)
      timer = null
    })
    focus.addEventListener('mouseleave', () => {
      left.style.display = 'none'
      right.style.display = 'none'
      timer = setInterval(() => {
      right.click()
    }, 2000)
    })
    ol.addEventListener('click', (e) => {
      if (e.target.tagName === 'OL') return
      for (let k of ol.children) {
        k.className = ''
      }
      e.target.className = 'current'
      let focusWidth = focus.offsetWidth
      let target =  -focusWidth * parseInt(e.target.getAttribute('index'))
      cur_index = parseInt(e.target.getAttribute('index'))
      circle = parseInt(e.target.getAttribute('index'))
      animate(ul, target)
    })
    let first = ul.children[0].cloneNode(true)
    ul.append(first)
    let cur_index = 0
    let circle = 0
    let flag = true
    right.addEventListener('click', (e) => {
      e.preventDefault()
      if (flag) {
        flag = false
        if (cur_index === 3) {
        ul.style.left = '0px'
        cur_index = 0
      }
      cur_index += 1
      animate(ul, -cur_index * focus.offsetWidth, function () {flag = true})
      circle += 1
      if (circle == 3) {
        circle = 0
      }
      for (let k of ol.children) {
        k.className = ''
      }
      ol.children[circle].className = 'current'
      }
      
    })
    left.addEventListener('click', (e) => {
      e.preventDefault()
      if (cur_index === 0) {
        ul.style.left = '-900px'
        cur_index = 3
      }
      cur_index -= 1
      animate(ul, -cur_index * focus.offsetWidth)
      circle -= 1
      if (circle == -1) {
        circle = 2
      }
      for (let k of ol.children) {
        k.className = ''
      }
      ol.children[circle].className = 'current'
    })

    // 自动轮播
    let timer = setInterval(() => {
      right.click()
    }, 2000)
  </script>
</body>
</html>

在这里插入图片描述

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-04-23 10:46:47  更:2022-04-23 10:48:41 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 0:48:34-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码