Blogger Information
Blog 19
fans 0
comment 0
visits 10673
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
自动滚动轮播图
无名小辈
Original
642 people have browsed it
  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. margin: 0;
  11. padding: 0;
  12. box-sizing: border-box;
  13. }
  14. li {
  15. list-style: none;
  16. }
  17. a {
  18. text-decoration: none;
  19. color: #343434;
  20. }
  21. div.banner {
  22. width: 80vw;
  23. margin: 0 auto;
  24. position: relative;
  25. z-index: 10;
  26. }
  27. div.banner div.images {
  28. width: 100%;
  29. }
  30. div.banner div.images a {
  31. width: 100%;
  32. height: 100%;
  33. display: none;
  34. }
  35. div.banner div.images a.active {
  36. display: block;
  37. }
  38. div.banner div.images img {
  39. width: 100%;
  40. }
  41. div.banner div.btns {
  42. position: absolute;
  43. width: auto;
  44. display: grid;
  45. grid-template-columns: repeat(4, 20px);
  46. gap: 10px;
  47. height: 10px;
  48. bottom: 20px;
  49. right: 20px;
  50. z-index: 200;
  51. overflow: hidden;
  52. }
  53. div.banner div.btns span {
  54. width: 100%;
  55. height: 100%;
  56. display: block;
  57. background-color: aliceblue;
  58. border-radius: 10px;
  59. cursor: pointer;
  60. font-size: 2px;
  61. }
  62. div.banner div.btns span:hover,
  63. div.banner div.btns span.active {
  64. background-color: blueviolet;
  65. }
  66. </style>
  67. </head>
  68. <body>
  69. <div class="banner">
  70. <div class="images">
  71. <a href="https://www.php.cn/k.html" target="_blank"><img
  72. src="https://img.php.cn/upload/aroundimg/000/000/001/62ea76c2b5ace916.png"></a>
  73. <a href="https://www.php.cn/k.html?1" target="_blank"><img
  74. src="https://img.php.cn/upload/aroundimg/000/000/001/62b2806382aa1939.png"></a>
  75. <a href="https://www.php.cn/blog/detail/33314.html" data-index="3"><img
  76. src="https://img.php.cn/upload/aroundimg/000/000/001/623c25c006c91144.jpg"></a>
  77. <a href="https://www.php.cn/app/" target="_blank"><img
  78. src="https://img.php.cn/upload/aroundimg/000/000/068/62398180bdae8398.jpg"></a>
  79. </div>
  80. <div class="btns"></div>
  81. </div>
  82. <script>
  83. // 遍历图片,取到dataset.index
  84. const images = document.querySelectorAll('.images > a');
  85. //定时器开关
  86. let lunbo = '';
  87. // 为第一个图片,添加 active 样式
  88. images[0].classList.add('active');
  89. // 根据 key 的下标,添加 data-index 的标识
  90. images.forEach((item, key) => item.dataset.index = key);
  91. // 遍历按钮,取到dataset.index
  92. const btns = document.querySelector('.btns');
  93. // 在 btns 下面,添加 span
  94. images.forEach((item) => btns.insertAdjacentHTML('beforeEnd', `<span data-index='${item.dataset.index}'></span>`));
  95. // 找到 images 图片中 active 样式的下标,然后 btns 根据 下标 为 span 标签 添加 active 样式
  96. [...btns.children][[...images].find((item) => item.className == 'active').dataset.index].classList.add('active');
  97. // 添加事件,鼠标点击后,跳转图片
  98. btns.addEventListener('click', show, true);
  99. //添加事件,鼠标移入后,暂停轮播
  100. btns.addEventListener('mouseover', showStop, true);
  101. //添加事件,鼠标移出后,开始轮播
  102. btns.addEventListener('mouseout', showStart, true);
  103. function show() {
  104. if (event.target.dataset.index) {
  105. event.stopPropagation(); // 阻止事件冒泡
  106. event.preventDefault(); // 阻止默认事件
  107. // 移除 div.btns 下面 span 标签的 active 样式
  108. [...btns.children].forEach((item) => item.classList.remove('active'))
  109. // 为 div.btns 下面 span 标签 添加 active 样式
  110. event.target.classList.add('active');
  111. //移除 div.images 下面 A 标签的 active样式
  112. images.forEach((item) => item.classList.remove('active'));
  113. // 为 div.images 下面 A 标签 添加 active 样式
  114. [...images].find((item) => item.dataset.index == event.target.dataset.index).classList.add('active');
  115. // console.log(Object.keys(btns.children));
  116. }
  117. }
  118. function showStop() {
  119. clearInterval(lunbo);
  120. }
  121. function showStart() {
  122. // 定时播放
  123. lunbo = setInterval(function (arr) {
  124. let index = arr.shift();
  125. btns.children[index].dispatchEvent(new Event('click'));
  126. arr.push(index)
  127. console.log(btns.children[index]);
  128. }, 2000, Object.keys(btns.children));
  129. }
  130. showStart();
  131. </script>
  132. </body>
  133. </html>
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post