-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
59 lines (56 loc) · 2.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="./css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="./css/popup.css">
</head>
<body>
<div class="row d-flex justify-content-center align-items-center">
<div class="col-2"></div>
<div class="col-8 d-flex justify-content-center align-items-center"><h3>选择功能</h3></div>
<div class="col-2"></div>
</div>
<div class="row">
<div class="card" style="width: 18rem;">
<ul class="list-group list-group-flush">
<li class="list-group-item">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id="feature1">
<label class="form-check-label" for="feature1">识别行内代码</label>
</div>
</li>
<li class="list-group-item">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id="feature2">
<label class="form-check-label" for="feature2">功能2</label>
</div>
</li>
<li class="list-group-item">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id="feature3">
<label class="form-check-label" for="feature3">功能3</label>
</div>
</li>
</ul>
</div>
</div>
<div class="row">
<div id="test" class="alert alert-primary" role="alert" style="margin-top: 10px;">
一切正常:)
</div>
</div>
<div class="row d-flex justify-content-center align-items-center">
<div class="col-3"></div>
<div class="col-6">
<button id="save" class="btn btn-primary" type="submit">保存设置</button>
</div>
<div class="col-3"></div>
</div>
<script src="./scripts/popup.js"></script>
<script src="./scripts/bootstrap.js"></script>
</body>
</html>