本文实例为大家分享了js实现滑动导航栏效果的具体代码,供大家参考,具体内容如下
复制代码
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1.0 ,user-scalable=no"> <script src="node_modules/jquery/jquery.js"></script> <style> *{ margin: 0; padding: 0; } .navScroll{ position: relative; } #overflow{ width: 100%; height: 30px; overflow-x: scroll; } #overflow .container{ height: 30px; } #overflow .container div{ float: left; width: 100px; height: 30px; line-height: 30px; text-align: center; } #overflow::-webkit-scrollbar { display: none; -webkit-overflow-scrolling: touch; } .navScroll .drop_down{ position: absolute; top: 0; right: 0; width: 50px; height: 30px; } .navScroll .drop_down img{ width: 100%; height: 100%; } .tabUl.clearFix{ display: none; width: 100%; list-style: none; z-index: 10; background: rgba(0,0,0,.1); } .tabUl li{ float: left; width: 6.25rem; height: 2.65625rem; line-height: 2.65625rem;; text-align: center; } .clearFix{ content: ""; display: table; clear: both; } div, ul{ color: #89CFE8; } #overflow .container div.lastWidth{ width: 50px; } .red{ color: #FF9933; } </style> </head> <body> <div class="navScroll"> <div id="overflow"> <div class="container"> <div class="tabItem red"> item1 </div> <div class="tabItem"> item2 </div> <div class="tabItem"> item3 </div> <div class="tabItem"> item4 </div> <div class="tabItem"> item5 </div> <div class="tabItem"> item6 </div> <div class="tabItem"> item7 </div> <div class="tabItem"> item8 </div> <div class="tabItem"> item9 </div> <div class="tabItem"> item10 </div> <div class="tabItem"> item11 </div> <div class="lastWidth"></div> </div> </div> <div class="drop_down"> <img src="img/icon_events_fold.png" drop="down" alt="" /> </div> <ul class="tabUl clearFix"> <li class="red">item1</li> <li >item2</li> <li >item3</li> <li >item4</li> <li >item5</li> <li >item6</li> <li >item7</li> <li >item8</li> <li >item9</li> <li >item10</li> <li >item11</li> </ul> </div> </body> <script> var width = 0; $('#overflow .container div').each(function () { width += $(this).outerWidth(true); }); $('#overflow .container').css('width', width + "px"); var flag = true; $(".drop_down img").click(function(e){ //箭头符号的变化 if(flag){ $(".drop_down img").attr("src","img/icon_events_unfold.png"); $(".tabUl").css("display","block") flag = false; }else{ $(".drop_down img").attr("src","img/icon_events_fold.png"); $(".tabUl").css("display","none") flag = true; } }); var ulHeight= Math.ceil(($(".tabUl li").length-1)/6)*2.65625 +"rem"; $(".navScroll .tabUl").css("height",ulHeight) $(".navScroll").on("click",".tabItem",function(e,index){ //滑动栏点击样式 var $this=$(this); $(".tabItem").css({"color": "#89CFE8"}) $($this).css({"color": "#FF9933"}); var items = $($this)[0]; var ulIndx; $(".tabItem").each(function(i,n){ if(n==items){ ulIndx = i; } }) $(".tabUl li").css({"color": "#89CFE8"}); var ulItems = $(".tabUl li")[ulIndx]; $(ulItems).css({"color": "#FF9933"}); moveNav(ulIndx); }) $(".navScroll").on("click","li",function(e,index){ //下拉点击样式 var $this=$(this); $("li").css({"color": "#89CFE8"}) $($this).css({"color": "#FF9933"}); var items = $($this)[0]; var ulIndx; $("li").each(function(i,n){ if(n==items){ ulIndx = i; } }) $(".tabItem").css({"color": "#89CFE8"}); var ulItems = $(".tabItem")[ulIndx]; $(ulItems).css({"color": "#FF9933"}); $(".drop_down img").attr("src","img/icon_events_fold.png"); $(".tabUl").css("display","none") flag = true; moveNav(ulIndx); }) function moveNav(index){ //滑动栏移动效果 var allImg = $(".navScroll").find(".tabItem"); var navImgWidth = allImg.width(); var lastWidth = $(".container .lastWidth").width(); var windowWidth = $(window).width(); var navBox = $("#overflow"); if(navImgWidth*(index+1) >=windowWidth-navImgWidth){ if(navImgWidth*(index+1)<navImgWidth*(allImg.length-1)+lastWidth-windowWidth){ navBox.animate({scrollLeft:navImgWidth*(index+1)},500); }else{ navBox.animate({scrollLeft:navImgWidth*(allImg.length)+lastWidth-windowWidth},500); } }else{ navBox.animate({scrollLeft:'0px'},1000); } } </script> </html>
导航栏可滑动
下拉点击会相应的改变导航栏
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
最后
以上就是无聊面包最近收集整理的关于JavaScript实现滑动导航栏效果的全部内容,更多相关JavaScript实现滑动导航栏效果内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复