forked from Mooooooon/Musicoon
-
Notifications
You must be signed in to change notification settings - Fork 2
/
options.html
67 lines (60 loc) · 2.37 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<title>Key Sounds Label 电台</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/responsive.css" />
<link rel="stylesheet" type="text/css" href="css/bootstrap-theme.min.css" />
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/jquery.dynatable.css" />
<script type="text/javascript" src="js/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="js/jquery.dynatable.js"></script>
<script type="text/javascript" src="js/options.js"></script>
</head>
<body>
<main class="main" align="center">
<div class="container">
<div class="h4">码率选择 BitRate</div>
<div>
<button type="button" class="btn br-btn btn-default" id="128brBtn">低音质 (128k)</button>
<button type="button" class="btn br-btn btn-default" id="192brBtn">中音质 (192k)</button>
<button type="button" class="btn br-btn btn-default" id="320brBtn">高音质 (320k)</button>
</div>
<br/><br/>
<div class="h4">那些被你加入黑名单的歌曲</div>
<div>
<a class="delete-all-button">reset blacklist</a>
<table id="my_table" class="table table-bordered table-hover table-striped">
<thead>
<tr>
<th data-dynatable-column="title">Title</th>
<th data-dynatable-column="artist">Artist</th>
<th data-dynatable-column="album">Album</th>
<th data-dynatable-column="ksl_id">KSL ID</th>
<th data-dynatable-column="delete">Delete</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<br/><br/>
<div class="h4">小提示</div>
<ul>
<li>按n键或右方向键切换下一首</li>
<li>按空格键或p键播放或暂停</li>
<li>按上下方向键控制音量</li>
</ul>
</div>
<div class="footer">音乐仅供试听;图片和音乐版权归属于原版权人所有</div>
<br/>
<div class="footer" >webpage made by: oldcat</div>
<div class="footer">version: 2.0</div>
</main>
</body>
</html>