forked from bjtqti/study
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
102 lines (92 loc) · 1.84 KB
/
menu.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-title" content="">
<meta name="apple-touch-fullscreen" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="format-detection" content="telephone=no, address=no">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="pragram" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache,must-revalidate">
<title>下划线跟随效果</title>
<style>
body,ul,li {
margin: 0;
padding: 0;
}
ul {
list-style: none;
}
ul {
display: flex;
position: absolute;
width: 800px;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
ul li {
position: relative;
padding: 20px;
font-size: 24px;
color: #000;
line-height: 1;
transition: 0.2s all linear;
cursor: pointer;
}
ul li::before {
content: "";
position: absolute;
top: 0;
left: 50%;
width: 0;
height: 100%;
border-bottom: 2px solid #000;
transition: 0.2s all linear;
}
ul li:hover::before {
width: 100%;
top: 0;
left: 0;
transition-delay: 0.1s;
border-bottom-color: #000;
}
ul li:last-child:before {
left: 100%;
}
ul li:last-child:hover:before {
left: 0;
}
ul li:first-child:before {
left: 0;
}
ul:hover li:before {
left: 100%;
}
ul:hover li:hover:before {
left: 0;
}
li:hover + li::before {
left: 0;
}
li:active {
background: #000;
color: #fff;
}
</style>
</head>
<body>
<ul>
<li>不可思议的CSS</li>
<li>导航栏</li>
<li>光标下划线跟随</li>
<li>PURE CSS</li>
<li>Coco</li>
</ul>
<script>
</script>
</body>
</html>