热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

开发笔记:原生js实现轮播图

篇首语:本文由编程笔记#小编为大家整理,主要介绍了原生js实现轮播图相关的知识,希望对你有一定的参考价值。如何使用原生js实现轮播图效果呢,

篇首语:本文由编程笔记#小编为大家整理,主要介绍了原生js实现轮播图相关的知识,希望对你有一定的参考价值。


如何使用原生js实现轮播图效果呢,现在带着大家做一个小小的例子

  先说一下这次的轮播图需要实现的功能点: 

    1.3s自动切换图片,图片切换时提示点跟随切换
    2.鼠标划到图片上,自动切换轮播图停止
    3.指示点划过切换对应的图片,图片切换时提示点跟随切换
    4.点击上一页下一页按钮切换图片


css代码部分



1 /*初始化浏览器默认样式*/
2 *{
3 margin: 0;
4 padding: 0;
5 }
6 /*sowingMap*/
7 .sowingMap{
8 width: 800px;
9 height: 500px;
10 margin: 0 auto;
11 position: relative;
12 overflow: hidden;
13 }
14 /*imgPart*/
15 .imgPart{
16 width: 800px;
17 height: 500px;
18 position: absolute;
19 }
20 /*imgSwitch*/
21 .imgSwitch{
22 width: 800px;
23 height: 500px;
24 position: absolute;
25 list-style: none;
26 display: none;
27 cursor: pointer;
28 }
29 .imgSwitch img{
30 width: 100%;
31 height: 500px;
32 }
33 .imgShow{
34 display: block;
35 }
36 /*spotPart*/
37 .spotPart{
38 position: absolute;
39 bottom: 0;
40 height: 40px;
41 left: 36%;
42 }
43 .spotPart p{
44 width: 20px;
45 height: 20px;
46 border-radius: 100%;
47 background-color: #fff;
48 float: left;
49 margin-left: 20px;
50 cursor: pointer;
51 }
52 /*提示点的选中颜色*/
53 .spotPart .spotColor{
54 background-color: #f00;
55 }
56 /*上一张下一张切换部分*/
57 .preImg , .nextImg{
58 width: 70px;
59 height: 70px;
60 border-radius: 100%;
61 background-color: rgba(255,255,255,0.5);
62 text-align: center;
63 line-height: 70px;
64 font-size: 30px;
65 color: #f5f5f5;
66 position: absolute;
67 top: 190px;
68 cursor: pointer;
69 display: none;
70 }
71 .preImg{
72 left: -35px;
73 text-indent: 25px;
74 }
75 .nextImg{
76 right: -35px;
77 text-indent: -25px;
78 }


css代码部分

html代码部分


1 <div class="sowingMap">
2 <ul class="imgPart">
3 <li class="imgSwitch imgShow"><img src="img/1.jpg"/>li>
4 <li class="imgSwitch"><img src="img/2.jpg"/>li>
5 <li class="imgSwitch"><img src="img/3.jpg"/>li>
6 <li class="imgSwitch"><img src="img/4.jpg"/>li>
7 <li class="imgSwitch"><img src="img/5.jpg"/>li>
8 ul>
9 <div class="spotPart">
10 <p class="spotColor">p>
11 <p>p>
12 <p>p>
13 <p>p>
14 <p>p>
15 div>
16 <div class="loopChange">
17 <p class="preImg"><p>
18 <p class="nextImg">>p>
19 div>
20 div>


js代码部分


1 //定义自动轮播的定时器
2 var startLoop = null;
3 //获取所有的li 和 p标签
4 var li_v = document.querySelectorAll("li");
5 var p_v = document.querySelectorAll(".spotPart p");
6 var sowingMap = document.querySelector(\'.sowingMap\');
7 var p_change = document.querySelectorAll(\'.loopChange p\');
8 //业务1:实现3s钟自动循环切换图片,图片切换时提示点跟随切换
9 var num = 0;
10 function loopSetInterval() {
11 clearInterval(startLoop);
12 startLoop = setInterval(function() {
13 for(var i = 0; i ) {
14 li_v[i].setAttribute("class", "imgSwitch");
15 p_v[i].setAttribute("class", " ");
16 }
17 if(num >= li_v.length - 1) {
18 num = 0;
19 } else {
20 num++;
21 }
22 li_v[num].setAttribute("class", "imgSwitch imgShow");
23 p_v[num].setAttribute("class", "spotColor");
24 }, 3000);
25 }
26 loopSetInterval();
27
28 //业务2:鼠标划到图片上,轮播图停止自动切换,划出后继续播放
29 for(var i = 0; i ) {
30 li_v[i].Onmouseover= function() {
31 clearInterval(startLoop);
32 }
33 li_v[i].Onmouseout= function() {
34 loopSetInterval();
35 }
36 }
37
38 //业务三:指示点划过切换对应的图片,图片切换时提示点跟随切换
39 for(var i = 0; i ) {
40 p_v[i].index = i;
41 p_v[i].Onmouseover= function() {
42 clearInterval(startLoop);
43 for(var i = 0; i ) {
44 li_v[i].setAttribute("class", "imgSwitch");
45 p_v[i].setAttribute("class", " ");
46 }
47 this.setAttribute("class", "spotColor");
48 li_v[this.index].setAttribute("class", "imgSwitch imgShow");
49 }
50 p_v[i].Onmouseout= function() {
51 loopSetInterval();
52 }
53 }
54
55 //业务四:点击上一页下一页切换
56 sowingMap.Onmouseover= function () {
57 for (var i=0;i) {
58 p_change[i].style.display = "block";
59 }
60 }
61 sowingMap.Onmouseout= function () {
62 for (var i=0;i) {
63 p_change[i].style.display = "none";
64 }
65 }
66 //点击切换上一张
67 p_change[0].Onclick= function () {
68 console.log(num)
69 for(var i = 0; i ) {
70 li_v[i].setAttribute("class", "imgSwitch");
71 p_v[i].setAttribute("class", " ");
72 }
73 if (num <= 0) {
74 num = 4;
75 li_v[num].setAttribute("class", "imgSwitch imgShow");
76 p_v[num].setAttribute("class", "spotColor");
77 } else if(num <= 4){
78 li_v[num-1].setAttribute("class", "imgSwitch imgShow");
79 p_v[num-1].setAttribute("class", "spotColor");
80 num--;
81 }
82 }
83 //点击切换下一张
84 p_change[1].Onclick= function () {
85 console.log(num)
86 for(var i = 0; i ) {
87 li_v[i].setAttribute("class", "imgSwitch");
88 p_v[i].setAttribute("class", " ");
89 }
90 if (num >= 4) {
91 num = 0;
92 li_v[num].setAttribute("class", "imgSwitch imgShow");
93 p_v[num].setAttribute("class", "spotColor");
94 } else if(num >= 0){
95 li_v[num+1].setAttribute("class", "imgSwitch imgShow");
96 p_v[num+1].setAttribute("class", "spotColor");
97 num++;
98 }
99 }

 

 

 

好了,一个原生的js代码实现轮播图效果就大功告成了,如果你想使用更简单的办法,可以参考我使用jQuery实现的轮播图效果:

https://www.cnblogs.com/qdclub/p/9782921.html

 



推荐阅读
  • 在AngularJS中,有时需要在表单内包含某些控件,但又不希望这些控件导致表单变为脏状态。例如,当用户对表单进行修改后,表单的$dirty属性将变为true,触发保存对话框。然而,对于一些导航或辅助功能控件,我们可能并不希望它们触发这种行为。 ... [详细]
  • 使用jQuery与百度地图API实现地址转经纬度功能
    本文详细介绍了如何利用jQuery和百度地图API将地址转换为经纬度,包括申请API密钥、页面构建及核心代码实现。 ... [详细]
  • 我在尝试将组合框转换为具有自动完成功能时遇到了一个问题,即页面上的列表框也被转换成了自动完成下拉框,而不是保持原有的多选列表框形式。 ... [详细]
  • 本文介绍了如何通过安装和配置php_uploadprogress扩展来实现文件上传时的进度条显示功能。通过一个简单的示例,详细解释了从安装扩展到编写具体代码的全过程。 ... [详细]
  • 本文详细介绍了PHP中的几种超全局变量,包括$GLOBAL、$_SERVER、$_POST、$_GET等,并探讨了AJAX的工作原理及其优缺点。通过具体示例,帮助读者更好地理解和应用这些技术。 ... [详细]
  • This article explores the process of integrating Promises into Ext Ajax calls for a more functional programming approach, along with detailed steps on testing these asynchronous operations. ... [详细]
  • java datarow_DataSet  DataTable DataRow 深入浅出
    本篇文章适合有一定的基础的人去查看,最好学习过一定net编程基础在来查看此文章。1.概念DataSet是ADO.NET的中心概念。可以把DataSet当成内存中的数据 ... [详细]
  • Kubernetes Services详解
    本文深入探讨了Kubernetes中的服务(Services)概念,解释了如何通过Services实现Pods之间的稳定通信,以及如何管理没有选择器的服务。 ... [详细]
  • 在Linux系统中使用EncFS实现文件夹加密
    为了保护个人隐私或敏感数据不被未经授权的访问,可以通过加密技术来增强安全性。本文介绍如何在Linux系统上使用EncFS工具创建和管理加密文件夹,以确保即使在系统登录状态下,特定文件夹中的数据也保持加密状态。 ... [详细]
  • Lua字符串1.字符串常见形式字符串或串(String)是由数字、字母、下划线组成的一串字符。Lua语言中字符串可以使用以下三种方式来表示:•单引号间的一串字符。 ... [详细]
  • 本文介绍如何通过Java代码调用阿里云短信服务API来实现短信验证码的发送功能,包括必要的依赖添加和关键代码示例。 ... [详细]
  • 本文介绍如何通过mysqladmin ext命令监控MySQL数据库的运行状态,包括性能指标的实时查看和分析。 ... [详细]
  • 本文详细介绍了如何使用Linux下的mysqlshow命令来查询MySQL数据库的相关信息,包括数据库、表以及字段的详情。通过本文的学习,读者可以掌握mysqlshow命令的基本语法及其常用选项。 ... [详细]
  • iOS如何实现手势
    这篇文章主要为大家展示了“iOS如何实现手势”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“iOS ... [详细]
  • 在使用mybatis进行mapper.xml测试的时候发生必须为元素类型“mapper”声明属性“namespace”的错误项目目录结构UserMapper和UserMappe ... [详细]
author-avatar
一粒小小无名砂_741
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有