-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
48 lines (45 loc) · 991 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
button {
border-radius: 5px;
border: none;
color: azure;
width: 120px;
height: 30px;
}
li{
margin-left:-15px
}
#submit{
background-color:darkcyan
}
</style>
</head>
<body>
<h3>插件处于<span id='text'></span>状态</h3>
<button id='bn'></button>
<h3 id='toggle'>自定义设置</h3>
<ul id='setting'>
<li>
<input name='check-box' type="checkbox">速度x1.5
</li>
<li>
<input name='check-box' type="checkbox">自动下一节
</li>
<li>
<input name='check-box' type="checkbox">关闭弹题
</li>
<li>
<input name='check-box' type="checkbox">设置为流畅
</li>
<li>
<input name='check-box' type="checkbox">设置静音
</li>
</ul>
<button id='submit'>确认设置</button>
<script src="popup.js"></script>
</body>
</html>