• JS:轮播图终极版


    轮播图:可触发效果

    :1、按箭头符号可左右切换图片

    2、到最后一张的下一张是开头第一张;开头第一张的前一张是最后一张

    3、鼠标放在轮播图上时轮播图停止定时器;鼠标移开定时器继续开启

    注意:图片需要自己准备且对应

    部分HTML代码:

    1. DOCTYPE html>
    2. <html lang="en">
    3. <head>
    4. <meta charset="UTF-8" />
    5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    7. <title>轮播图点击切换title>
    8. <style>
    9. * {
    10. box-sizing: border-box;
    11. }
    12. .slider {
    13. width: 560px;
    14. height: 400px;
    15. overflow: hidden;
    16. }
    17. .slider-wrapper {
    18. width: 100%;
    19. height: 320px;
    20. }
    21. .slider-wrapper img {
    22. width: 100%;
    23. height: 100%;
    24. display: block;
    25. }
    26. .slider-footer {
    27. height: 80px;
    28. background-color: rgb(100, 67, 68);
    29. padding: 12px 12px 0 12px;
    30. position: relative;
    31. }
    32. .slider-footer .toggle {
    33. position: absolute;
    34. right: 0;
    35. top: 12px;
    36. display: flex;
    37. }
    38. .slider-footer .toggle button {
    39. margin-right: 12px;
    40. width: 28px;
    41. height: 28px;
    42. appearance: none;
    43. border: none;
    44. background: rgba(255, 255, 255, 0.1);
    45. color: #fff;
    46. border-radius: 4px;
    47. cursor: pointer;
    48. }
    49. .slider-footer .toggle button:hover {
    50. background: rgba(255, 255, 255, 0.2);
    51. }
    52. .slider-footer p {
    53. margin: 0;
    54. color: #fff;
    55. font-size: 18px;
    56. margin-bottom: 10px;
    57. }
    58. .slider-indicator {
    59. margin: 0;
    60. padding: 0;
    61. list-style: none;
    62. display: flex;
    63. align-items: center;
    64. }
    65. .slider-indicator li {
    66. width: 8px;
    67. height: 8px;
    68. margin: 4px;
    69. border-radius: 50%;
    70. background: #fff;
    71. opacity: 0.4;
    72. cursor: pointer;
    73. }
    74. .slider-indicator li.active {
    75. width: 12px;
    76. height: 12px;
    77. opacity: 1;
    78. }
    79. style>
    80. head>
    81. <body>
    82. <div class="slider">
    83. <div class="slider-wrapper">
    84. <img src="./imgs/slider01.jpg" alt="" />
    85. div>
    86. <div class="slider-footer">
    87. <p>对人类来说会不会太超前了?p>
    88. <ul class="slider-indicator">
    89. <li class="active">li>
    90. <li>li>
    91. <li>li>
    92. <li>li>
    93. <li>li>
    94. <li>li>
    95. <li>li>
    96. <li>li>
    97. ul>
    98. <div class="toggle">
    99. <button class="prev"><button>
    100. <button class="next">>button>
    101. div>
    102. div>
    103. div>
    104. <script>
    105. // 需求:当点击左边的按钮可以切换轮播图
    106. // 分析:右侧按钮点击,变量++;如果大于等于8则复原0;
    107. // 左侧按钮点击,变量--;如果小于0则复原最后一张
    108. // 鼠标经过暂停定时器,鼠标离开开始定时器
    109. // 1. 初始数据
    110. const sliderData = [
    111. { url: './imgs/slider01.jpg', title: '对人类来说会不会太超前了?', color: 'rgb(100, 67, 68)' },
    112. { url: './imgs/slider02.jpg', title: '开启剑与雪的黑暗传说!', color: 'rgb(43, 35, 26)' },
    113. { url: './imgs/slider03.jpg', title: '真正的jo厨出现了!', color: 'rgb(36, 31, 33)' },
    114. { url: './imgs/slider04.jpg', title: '李玉刚:让世界通过B站看到东方大国文化', color: 'rgb(139, 98, 66)' },
    115. { url: './imgs/slider05.jpg', title: '快来分享你的寒假日常吧~', color: 'rgb(67, 90, 92)' },
    116. { url: './imgs/slider06.jpg', title: '哔哩哔哩小年YEAH', color: 'rgb(166, 131, 143)' },
    117. { url: './imgs/slider07.jpg', title: '一站式解决你的电脑配置问题!!!', color: 'rgb(53, 29, 25)' },
    118. { url: './imgs/slider08.jpg', title: '谁不想和小猫咪贴贴呢!', color: 'rgb(99, 72, 114)' },
    119. ]
    120. script>
    121. body>
    122. html>

    JavaScript代码:

    1. // 获取p元素
    2. const p = document.querySelector('.slider-footer p')
    3. //获取footer
    4. const footer = document.querySelector('.slider-footer')
    5. // 获取右边按钮
    6. const next = document.querySelector('.next')
    7. // 获取左边按钮
    8. const prev = document.querySelector('.prev')
    9. let i = 0
    10. // while (true) {
    11. //渲染对应的数据
    12. function move(i) {
    13. img.src = sliderData[i].url
    14. p.innerHTML = sliderData[i].title
    15. // 获取元素
    16. footer.style.backgroundColor = sliderData[i].color
    17. // 先删掉之前的active
    18. document.querySelector('.slider-indicator .active').classList.remove('active')
    19. // 只让当前的litianjia active
    20. document.querySelector(`.slider-indicator li:nth-child(${i + 1})`).classList.add('active')
    21. }
    22. //定时器函数
    23. function timer() {
    24. }
    25. next.addEventListener('click', function () {
    26. // if (i >= 8)
    27. // i = 0
    28. // i++
    29. i++
    30. i = i >= sliderData.length - 1 ? 0 : i
    31. // 调用渲染函数
    32. move(i)
    33. })
    34. prev.addEventListener('click', function () {
    35. // if (i < 0)
    36. // i = 7
    37. i--
    38. i = i < 0 ? sliderData.length - 1 : i
    39. // 调用渲染函数
    40. move(i)
    41. })
    42. // }
    43. // 记录定时器id
    44. let timeId = 0
    45. // 自动播放
    46. timeId = setInterval(function () {
    47. // 利用js自动调用点击事件
    48. next.click()
    49. }, 1000)
    50. document.querySelector('.slider').addEventListener('mouseenter', function () {
    51. // 停止定时器
    52. clearInterval(timeId)
    53. })
    54. //鼠标移开开启定时器
    55. document.querySelector('.slider').addEventListener('mouseleave', function () {
    56. timeId = setInterval(function () {
    57. // 利用js自动调用点击事件
    58. next.click()
    59. }, 1000)
    60. }
    61. )

  • 相关阅读:
    Mysql Explain
    2022/8/2 考试总结
    初识Linux系统以及部分Linux系统指令介绍
    A1032 Sharing(25分)PAT 甲级(Advanced Level) Practice(C++)满分题解【字符串+结构体+map]
    【100天精通Python】Day53:Python 数据分析_NumPy数据操作和分析进阶
    树莓派4B简单使用内容(以移植QT应用为例)
    vue 引入pinia报 injection “symbol(pinia)“ not found
    万字长文讲解Golang pprof 的使用
    nn.LayerNorm详解+代码演示
    第二章:最新版零基础学习 PYTHON 教程(第五节 - Python 输入/输出–如何在Python中打印而不换行?)
  • 原文地址:https://blog.csdn.net/Saala/article/details/136746270