-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
34 lines (33 loc) · 1.11 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<title>选项</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/options.css">
<script type="text/javascript" src="js/jquery-3.1.1.js"></script>
<script type="text/javascript" src="js/options.js"></script>
</head>
<body>
<div class="main">
<div class="head">
<span class="title">时间</span>
<span id="version"></span>
</div>
<div class="options">
<div id="saving" class="invisible">
<span id="savingIcon"></span>
<span>正在保存...</span>
</div>
<div class="line">
<span>插件展示个数:</span>
<select id="selectShowCounts">
<option value="10">10</option>
<option value="15">15</option>
<option value="20">20</option>
</select>
</div>
</div>
<div class="footer"><span>如果您喜欢的话,有问题请反馈给我,我的邮箱:[email protected]</span></div>
</div>
</body>
</html>