-
Notifications
You must be signed in to change notification settings - Fork 27
/
drop-down-menu.html
148 lines (125 loc) · 3.07 KB
/
drop-down-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
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
<!doctype html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Template Index</title>
<style>
.drop-down {
list-style: none;
margin: 0;
padding: 0;
}
.drop-down-item {
position: relative;
padding: 10px;
background-color: #EEE;
border: 1px solid #DDD;
width: 200px;
}
.drop-down-link {
text-decoration: none;
color: #000;
}
.drop-down-icon {
display: block;
position: absolute;
top: 50%;
right: 15px;
width: 0;
height: 0;
font-size: 0;
border: 5px solid #EEE;
border-top-color: #000;
}
.drop-down-item-active,
.drop-down-item:hover {
background-color: #7B7B7B;
border-color: #7B7B7B;
}
.drop-down-item-active .drop-down-link,
.drop-down-item:hover .drop-down-link {
color: #FFF;
}
.drop-down-item-active .drop-down-icon,
.drop-down-item:hover .drop-down-icon {
border-color: #7B7B7B;
border-bottom-color: #FFF;
margin-top: -5px;
}
.menu {
position: absolute;
display: none;
z-index: 100;
list-style: none;
margin: 0;
padding: 0;
width: 100%;
margin-top: 2px;
border: 1px solid #DDD;
top: 100%;
left: 0;
}
.drop-down-item:hover .menu,
.drop-down-item-active .menu{
display: block;
}
.menu-item {
border-bottom: 1px solid #DDD;
padding: 10px;
}
.menu-item:last-child,
.menu-item-last {
border-bottom-width: 0;
}
.menu-link {
color: #909090;
text-decoration: none;
}
</style>
</head>
<body>
<ul class="drop-down" id="drop-down">
<li class="drop-down-item">
<a class="drop-down-link" href="#">下拉菜单
<span class="drop-down-icon"></span>
</a>
<ul class="menu">
<li class="menu-item"><a href="#" class="menu-link">Item 1</a></li>
<li class="menu-item"><a href="#" class="menu-link">Item 2</a></li>
<li class="menu-item"><a href="#" class="menu-link">Item 3</a></li>
<li class="menu-item"><a href="#" class="menu-link">Item 4</a></li>
</ul>
</li>
</ul>
<script>
function hasClass(elem, cls) {
var className = ' ' + elem.className + ' ';
return className.indexOf(' ' + cls + ' ') !== -1;
}
function addClass(elem, cls) {
if (elem.className) {
elem.className += ' ' + cls;
} else {
elem.className = cls;
}
}
function removeClass(elem, cls) {
var className = ' ' + elem.className + ' ';
var regexp = new RegExp(' ' + cls + ' ');
elem.className = className.replace(regexp, ' ');
}
var dropDown = document.getElementById('drop-down');
if (dropDown.attachEvent) {
dropDown.attachEvent('onmouseover', function () {
var target = window.event.srcElement;
if (hasClass(target, 'drop-down-item')) {
addClass(target, 'drop-down-item-active');
}
});
}
</script>
</body>
</html>