-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpopup.html
74 lines (72 loc) · 2.69 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
67
68
69
70
71
72
73
74
<html>
<head>
<meta charset="UTF-8" />
<!-- <link rel="stylesheet" href="third-party/jquery-ui.css">
<link rel="stylesheet" href="third-party/jquery-ui.structure.css">
<link rel="stylesheet" href="third-party/jquery-ui.theme.css"> -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<link rel="stylesheet" href="popup.css">
<!-- <script src="third-party/jquery-1.12.4.js"></script>
<script src="third-party/jquery-ui-1.12.1.js"></script> -->
</head>
<body style="width: 170px">
<div class="container" style="margin-top: 5px; margin-bottom: 5px; margin-left: 5px; margin-right: 5px;">
<div class="row">
<div class="col-sm-3 keys">
<li>屏幕录制</li>
</div>
<div class="col-sm-4 values">
<label class="switch">
<input type="checkbox" checked>
<span class="slider round"></span>
</label>
</div>
</div>
<div class="row">
<div class="col-sm-3 keys">
<li>输入捕获</li>
</div>
<div class="col-sm-4 values">
<label class="switch">
<input type="checkbox" checked>
<span class="slider round"></span>
</label>
</div>
</div>
<div class="row">
<div class="col-sm-3 keys">
<li>命令弹窗</li>
</div>
<div class="col-sm-4 values">
<label class="switch">
<input type="checkbox" checked>
<span class="slider round"></span>
</label>
</div>
</div>
<div class="row" style="margin: auto; width: 60%;">
<button style="margin-top: 10px; margin-bottom: 10px; font-weight: bold;">更多设置</button>
</div>
</div>
<!--
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
rel="stylesheet" />
<div class="row flex">
<div class="col-md-2">
<img src="http://placehold.it/300x300" alt="" class="img-responsive">
<p class="text-center channel-number">2</p>
</div>
<div class="col-md-2">
<img src="http://placehold.it/300x100" alt="" class="img-responsive">
<p class="text-center channel-number">4</p>
</div>
<div class="col-md-2">
<img src="http://placehold.it/300x400" alt="" class="img-responsive">
<p class="text-center channel-number">11</p>
</div>
</div>
-->
<script src="popup.js"></script>
</body>
</html>