-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
55 lines (54 loc) · 2.04 KB
/
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
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<title>popup页</title>
<meta http-equiv="Content-Type" content="text/html" charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/popup.css">
<script type="text/javascript" src="js/jquery-1.8.3.js"></script>
<style>
body {
font-family: 'Microsoft Yahei';
width: 300px;
}
</style>
</head>
<body>
<div style="padding: 20px 20px">
<h3 style="text-align: center;" id="app-name">网易云封面助手
<!-- <a href="https://weibo.com/musiccover" target="_blank"><img src="img/weibo-logo.png" id="weibo"></a> -->
</h3>
<p style="text-align: center;">
v1.2.0
</p>
<form class="bs-example bs-example-form" role="form">
<div class="input-group" style="margin-top: 10px;">
<span class="input-group-addon" id="category">类别:</span>
<input type="text" id="category" class="form-control" value="全部">
</div>
<!-- <div class="input-group" style="margin-top: 10px;">
<span class="input-group-addon">搜索:</span>
<input type="text" id="search_words" class="form-control" value="">
</div> -->
<div class="input-group" style="margin-top: 10px;">
<span class="input-group-addon" id="start-page">开始:</span>
<input type="text" id="start_page" class="form-control" value="1">
</div>
<div class="input-group" style="margin-top: 10px;">
<span class="input-group-addon" id="end-page">结束:</span>
<input type="text" id="end_page" class="form-control" value="20">
</div>
<!--<div class="checkbox">
<label>
<input type="checkbox" id="auto_download">开启自动下载</br>(此选项可能下载大量文件,不建议勾选)
</label>
</div>-->
<div style="text-align: center;">
<button class="btn btn-primary" id="load_hot" style="width: 60%;margin-top: 10px;">开始采集</button>
</div>
</form>
</div>
</body>
<script type="text/javascript" src="js/popup.js"></script>
</html>