本文实例为大家分享了JS实现京东商品分类侧边栏的具体代码,供大家参考,具体内容如下
HTML代码部分
1
2
3
4
5
6
7
8
9
10
11
12
|
< div >
< img src = "/1.png" alt = "" >
</ div >
< ul >
< li >< a href = "" >京东秒杀</ a ></ li >
< li class = "two" >< a href = "" >欢迎</ a ></ li >
< li >< a href = "" >特色优选</ a ></ li >
< li >< a href = "" >频道广场</ a ></ li >
< li >< a href = "" >为你推荐</ a ></ li >
< li class = "two" >< a href = "" >客服</ a ></ li >
< li style = "border-bottom: none;" class = "two" >< a href = "" >反馈</ a ></ li >
</ ul >
|
CSS部分
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
|
<style>
* {
margin : 0 ;
padding : 0 ;
}
a {
text-decoration : none ;
color : #000 ;
}
div {
width : 100% ;
}
img {
margin-left : 300px ;
display : block ;
margin : 0 auto ;
}
ul {
position : absolute ;
display : none ;
top : 350px ;
left : 1700px ;
width : 60px ;
height : 400px ;
border : 1px solid red ;
box-sizing: border-box;
}
ul li {
width : 100% ;
height : 57px ;
list-style : none ;
text-align : center ;
float : right ;
padding : 5px 10px ;
line-height : 26px ;
text-align : center ;
float : left ;
box-sizing: border-box;
border-bottom : 1px solid #eee ;
}
li:hover {
background-color : red ;
}
li:hover a {
color : white ;
}
.two {
line-height : 52px ;
}
|
JS部分
1
2
3
4
5
6
7
8
9
10
11
12
|
<script>
document.addEventListener( 'scroll' , function () {
var ul = document.querySelector( 'ul' )
console.log(window.pageYOffset)
if (window.pageYOffset > 700) {
ul.style.display = 'block'
ul.style.position = 'fixed' ;
} else {
ul.style.display = 'none'
}
})
</script>
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/Web_chicken/article/details/110951577