-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
66 lines (57 loc) · 1.43 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
56
57
58
59
60
61
62
63
64
65
66
<html>
<head>
<title> Bilibili-Helper </title>
<link rel="stylesheet" type="text/css" href="static/css/bootstrap-material-design.css"/>
<!-- <link rel="stylesheet" type="text/css" href="static/css/light.css" /> -->
<style>
body {
width: 250px;
}
</style>
</head>
<body>
<nav class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<a class="navbar-brand" href="#">Bilibili-Helper</a>
</div>
<a href="https://github.com/wansho" id="github">
<img src="static/images/github.png" class="img-rounded"/>
</a>
</nav>
<section>
<table class="table">
<thead>
<tr>
<th scope="col" id="provided_functions">功能</th>
<th scope="col" id="switchs">开关</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<img src="static/images/danmu_trend.png" class="img-rounded"/>
<span id="danmu_trend"></span>
</td>
<td>
<div class="switch">
<label>
<input type="checkbox" checked class="custom-control-input" id="danmu_trend_switch">
</label>
</div>
</td>
</tr>
<!--
<tr>
<td>default</td>
<td>default</td>
</tr>
-->
</tbody>
</table>
</section>
<script src="static/js/jquery-2.0.3.min.js"></script>
<script src="static/js/popper.min.js"></script>
<script src="static/js/bootstrap-material-design.js"></script>
<script src="popup.js"></script>
</body>
</html>