-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
49 lines (44 loc) · 1003 Bytes
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>popup</title>
<style>
* {
margin: 0;
padding: 0;
}
html {
width: 200px;
}
.tips {
padding: .25em;
font-size: 1.25em;
color: #655;
}
.speed-list li {
padding: .5em;
border-top: solid 2px #aaa;
}
.speed-list li:hover {
background-color: #ddd;
cursor: pointer;
}
.speed-list li.active {
background-color: #58a;
color: #eee;
}
</style>
</head>
<body>
<h3 class="tips">选择播放速度:</h3>
<ul class="speed-list">
<li data-value="0.5">0.5</li>
<li data-value="1">1</li>
<li data-value="1.25">1.25</li>
<li data-value="1.5">1.5</li>
<li data-value="2">2</li>
</ul>
<script src="js/popup.js"></script>
</body>
</html>