Blogger Information
Blog 32
fans 0
comment 0
visits 27676
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
js 选项卡和轮播图的实现
Yang_Sir
Original
1078 people have browsed it
  • 利用js,可以大大提升网页交互能力,如鼠标移动、点击事件,按键事件等等。
  • js定时器可以实现动态页面。

1. 选项卡

  • 主要原理是利用标签的点击事件触发,更改相关标签的样式
  • 通过自定义的data-index属性找到对应的内容块
  • 只显示激活状态的标签,其它隐藏

1.页面元素

  1. <body>
  2. <div class="container">
  3. <ul class="titlec">
  4. <li class="title active" data-index="1">分类1</li>
  5. <li class="title" data-index="2">分类2</li>
  6. <li class="title" data-index="3">分类3</li>
  7. <li class="title" data-index="4">分类4</li>
  8. </ul>
  9. <ol class="content active" data-index="1">
  10. <li>内容1</li>
  11. <li>内容1</li>
  12. <li>内容1</li>
  13. <li>内容1</li>
  14. </ol>
  15. <ol class="content" data-index="2">
  16. <li>内容2</li>
  17. <li>内容2</li>
  18. <li>内容2</li>
  19. <li>内容2</li>
  20. </ol>
  21. <ol class="content" data-index="3">
  22. <li>内容3</li>
  23. <li>内容3</li>
  24. <li>内容3</li>
  25. <li>内容3</li>
  26. </ol>
  27. <ol class="content" data-index="4">
  28. <li>内容4</li>
  29. <li>内容4</li>
  30. <li>内容4</li>
  31. <li>内容4</li>
  32. </ol>
  33. </div>
  34. </body>

2.css样式

  1. <style>
  2. .container {
  3. width: 400px;
  4. border: 1px solid #cccccc;
  5. }
  6. .titlec {
  7. width: 400px;
  8. display: grid;
  9. grid-template-columns: repeat(4, 1fr);
  10. padding: 0;
  11. margin: 0;
  12. }
  13. .titlec li {
  14. font-size: 18px;
  15. color: red;
  16. text-align: center;
  17. list-style: none;
  18. padding: 0 10px;
  19. cursor: pointer;
  20. border-right: 1px solid #cccccc;
  21. }
  22. .content.active {
  23. background-color: #00ffff;
  24. display: block;
  25. }
  26. .active {
  27. background-color: #00ffff;
  28. }
  29. .content {
  30. display: none;
  31. margin-top: 0;
  32. }
  33. </style>

3.js代码

  1. <script>
  2. //获取所有内容标签ol
  3. var ols = document.querySelectorAll("ol");
  4. //标题标签ul
  5. var titlec = document.querySelector(".titlec");
  6. //获取所有标题
  7. var titles = document.querySelectorAll(".title");
  8. //为标题添加鼠标悬停事件
  9. titlec.addEventListener("mouseover", show, false);
  10. //为标题添加点击事件
  11. titlec.addEventListener("click", show, false);
  12. function show(ev) {
  13. //console.log(ev);
  14. //去掉所有的激活active状态
  15. titles.forEach(function (title) {
  16. title.classList.remove("active");
  17. });
  18. ols.forEach(function (ol) {
  19. //把与标题data-index属性值一样的内容标签激活active
  20. if (ol.dataset.index === ev.target.dataset.index) {
  21. ol.classList.add("active");
  22. } else {
  23. ol.classList.remove("active");
  24. }
  25. });
  26. //设置当前标签为激活状态
  27. ev.target.classList.add("active");
  28. }
  29. </script>

效果图:

2. 轮播图

  • 轮播图的样式主要使用定位的方式,是圆点和翻译按钮显示在图片上层
  • 只显示当前图片,隐藏其它图片
  • 用js设置点击事件,以及定时器自动触发翻页点击事件

1.页面元素

  1. <div class="box">
  2. <img
  3. src="banner/banner1.jpg"
  4. alt=""
  5. data-index="1"
  6. class="slider active"/>
  7. <img src="banner/banner2.jpg" alt="" data-index="2" class="slider" />
  8. <img src="banner/banner3.jpg" alt="" data-index="3" class="slider" />
  9. <img src="banner/banner4.jpg" alt="" data-index="4" class="slider" />
  10. <div class="point-list"></div>
  11. <span class="skip prev">&lt;</span>
  12. <span class="skip next">&gt;</span>
  13. </div>

2.css样式

  1. <style>
  2. .box {
  3. position: relative;
  4. width: 1000px;
  5. height: 350px;
  6. margin: 0 auto;
  7. }
  8. .box .slider {
  9. width: 1000px;
  10. height: 350px;
  11. display: none;
  12. }
  13. .box .slider.active {
  14. display: block;
  15. }
  16. .box .point-list {
  17. position: absolute;
  18. left: 50%;
  19. margin-left: -38px;
  20. top: 310px;
  21. }
  22. .box .point-list .point {
  23. display: inline-block;
  24. width: 12px;
  25. height: 12px;
  26. margin: 0 5px;
  27. background-color: #ffffff;
  28. border-radius: 100%;
  29. }
  30. .box .point-list .point.active {
  31. background-color: #000000;
  32. }
  33. .box .point-list .point:hover {
  34. cursor: pointer;
  35. }
  36. .skip {
  37. position: absolute;
  38. top: 140px;
  39. width: 40px;
  40. height: 80px;
  41. text-align: center;
  42. line-height: 80px;
  43. background-color: lightgray;
  44. color: white;
  45. font-size: 36px;
  46. opacity: 0.2;
  47. }
  48. .prev {
  49. left: 0;
  50. }
  51. .next {
  52. right: 0;
  53. }
  54. .skip:hover {
  55. cursor: pointer;
  56. opacity: 0.5;
  57. color: #0080ff;
  58. }
  59. </style>

3.js代码

  1. <script>
  2. //所有图片
  3. var imgs = document.querySelectorAll("img");
  4. //小圆点的容器
  5. var pointList = document.querySelector(".point-list");
  6. //根据图片数量动态生成圆点
  7. imgs.forEach(function (img, index) {
  8. var span = document.createElement("span");
  9. if (index === 0) {
  10. span.classList.add("point", "active");
  11. } else {
  12. span.classList.add("point");
  13. }
  14. //为小圆点标签设置与图片相同值的自定义属性index
  15. span.dataset.index = img.dataset.index;
  16. //把圆点添加到容器中
  17. pointList.appendChild(span);
  18. });
  19. //获取所有圆点
  20. var points = document.querySelectorAll(".point");
  21. //为小圆点添加点击事件
  22. pointList.addEventListener(
  23. "click",
  24. function (ev) {
  25. console.log(ev.target);
  26. imgs.forEach(function (img) {
  27. if (img.dataset.index === ev.target.dataset.index) {
  28. //激活当前图片
  29. img.classList.add("active");
  30. //更新小圆点样式
  31. setPointActive(img.dataset.index);
  32. } else {
  33. //隐藏其它图片
  34. img.classList.remove("active");
  35. }
  36. });
  37. },
  38. false
  39. );
  40. //自定义更新圆点激活样式函数
  41. function setPointActive(imgIndex) {
  42. points.forEach(function (point) {
  43. if (point.dataset.index === imgIndex) {
  44. point.classList.add("active");
  45. } else {
  46. point.classList.remove("active");
  47. }
  48. });
  49. }
  50. //前后翻页事件
  51. var prev = document.querySelector(".skip.prev");
  52. var next = document.querySelector(".skip.next");
  53. prev.addEventListener("click", skipImg, false);
  54. next.addEventListener("click", skipImg, false);
  55. function skipImg(ev) {
  56. //1.找到当前显示的图片
  57. var currentImg = document.querySelector(".slider.active");
  58. //2.去掉当前图片的激活样式
  59. currentImg.classList.remove("active");
  60. //3.1如果点击的是向前
  61. if (ev.target.classList.contains("prev")) {
  62. //指向前一个兄弟元素
  63. currentImg = currentImg.previousElementSibling;
  64. //如果前一个图片元素不存在,则指向最后一个图片元素
  65. if (currentImg === null || currentImg.nodeName !== "IMG") {
  66. currentImg = imgs[imgs.length - 1];
  67. }
  68. }
  69. //3.2如果点击的是向后
  70. if (ev.target.classList.contains("next")) {
  71. //指向后一个兄弟元素
  72. currentImg = currentImg.nextElementSibling;
  73. //如果后一个图片元素不存在,指向第一个图片元素
  74. if (currentImg === null || currentImg.nodeName !== "IMG") {
  75. currentImg = imgs[0];
  76. }
  77. }
  78. //4.为最终指向的图片添加激活样式
  79. currentImg.classList.add("active");
  80. //5.更新小圆点样式
  81. setPointActive(currentImg.dataset.index);
  82. }
  83. //定时器,自动向后翻页
  84. var box = document.querySelector(".box");
  85. var timer = null;
  86. //1.自动执行
  87. startTimer();
  88. //2.当鼠标移出轮播区时,启动定时器
  89. box.addEventListener("mouseout", startTimer, false);
  90. //3.当鼠标移入轮播区时,清理定时器
  91. box.addEventListener("mouseover", clearTimer, false);
  92. //定时器
  93. function startTimer() {
  94. var click = new Event("click");
  95. timer = setInterval(function () {
  96. next.dispatchEvent(click);
  97. }, 5000);
  98. }
  99. // 清除定时器
  100. function clearTimer() {
  101. clearInterval(timer);
  102. }
  103. </script>

效果图:

Correcting teacher:天蓬老师天蓬老师

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!