我是靠谱客的博主 勤劳汽车,这篇文章主要介绍实现网页轮播,现在分享给大家,希望可以做个参考。

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>网页轮播</title> <style type="text/css"> *{ padding: 0; margin: 0; } body{ background-color: #999; } .cou{ width: 200px; height: 400px; border: 8px solid red; margin: 30px auto; position: relative; } .lun img{ width: 200px; height: 386px; } .lun a{ display: none; } .lun a.on{ display: block; } .item{ position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%); } .item li{ float: left; width: 10px; height: 10px; list-style: none; border-radius: 50%; background-color: #fff; margin-right: 10px; } .item li.current{ background-color: orange; } .al{ width: 24px; height: 24px; display: inline-block; position: absolute; top: 174px; background:rgba(255,255,255,0.3); display: none; } .al img{ width: 20px; height: 20px; margin: 2px; } .ar{ width: 24px; height: 24px; display: inline-block; position: absolute; top: 174px; right: 0; background:rgba(255,255,255,0.3); display: none; } .ar img{ width: 20px; height: 20px; margin: 2px; } </style> </head> <body> <div class="cou"> <!--轮播区--> <div class="lun"> <a href="#" class="on"><img src="images/8.png"></a> <a href="#"><img src="1.png"></a> <a href="#"><img src="2.jpg"></a> <a href="#"><img src="3.jpg"></a> </div> <ul class="item"> <li class="current"></li> <li></li> <li></li> <li></li> </ul> <a href="#" class="al"><img src="4.jpg"></a> <a href="#" class="ar"><img src="5.jpg"></a> </div> <script type="text/javascript"> //获取元素 var o=document.querySelector('.cou'); var as=document.querySelector('.lun').querySelectorAll('a'); var lis=document.querySelector('.item').querySelectorAll('li'); var al=document.querySelector('.al'); var ar=document.querySelector('.ar'); var index=0;//保存当前展示的轮播图的索引,默认0 var len=as.length; var t; //自动轮播 t=setInterval(moveNext,2000); //鼠标经过,停止轮播 o.onmouseover=function(){ clearInterval(t); o.style.cursor='pointer'; al.style.display='block'; ar.style.display='block'; }; //鼠标离开,继续轮播 o.onmouseout=function(){ t=setInterval(moveNext,2000); al.style.display='none'; ar.style.display='none'; }; //指示器轮播 for(var i=0;i<lis.length;i++){ lis[i]._index=i;//新增属性,保存位置 //为每一个li追加点击事件 lis[i].onclick=function(){ //当前显示的li,修改为未选中状态 lis[index].className=''; as[index].className='';//当前显示的轮播图改为不显示 this.className='current';//被点击的li,改为选中状态 as[this._index].className='on';//轮播显示为对应 //修改index值 index=this._index; }; } //箭头轮播 //右箭头 al.onclick=function(){ movePre(); }; //左箭头 ar.onclick=function(){ moveNext(); }; //切换下一张 function moveNext(){ as[index].className='';//当前显示的轮播图改为不显示 lis[index].className='';//当前指示器不显示 index++;//索引递增 if (index==len) { index=0;//最后一张切换为第一张 } as[index].className='on';//下一张显示 lis[index].className='current'; } //切换上一张 function movePre(){ as[index].className=''; lis[index].className=''; index--; if (index==-1) { index=len-1;//第一张时,修改为最后一张 } //上一张展示 as[index].className='on'; lis[index].className='current'; } </script> </body> </html>

 

最后

以上就是勤劳汽车最近收集整理的关于实现网页轮播的全部内容,更多相关实现网页轮播内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(66)

评论列表共有 0 条评论

立即
投稿
返回
顶部