forked from lingjf/Shanbay-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
91 lines (83 loc) · 3.22 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<title>Options</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="jumbotron">
<div class="container">
<h1>Shanbay Plugin Setting Page</h1>
<p></p>
<p>
<a class="btn btn-primary btn-lg" role="button"
href="https://github.com/lingjf/Shanbay-Plugin">Learn more</a>
<a class="btn btn-primary btn-lg" role="button"
href="help.html">使用帮助</a>
<iframe
src="http://ghbtns.com/github-btn.html?user=lingjf&repo=Shanbay-Plugin&type=watch&count=true"
allowtransparency="true" frameborder="0" scrolling="0" width="62" height="20"></iframe>
<iframe
src="http://ghbtns.com/github-btn.html?user=lingjf&repo=Shanbay-Plugin&type=fork"
allowtransparency="true" frameborder="0" scrolling="0" width="62"
height="20"></iframe>
<iframe
src="http://ghbtns.com/github-btn.html?user=lingjf&repo=Shanbay-Plugin&type=follow"
allowtransparency="true" frameborder="0" scrolling="0" width="140"
height="20"></iframe>
</p>
</div>
</div>
<div class="container">
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-default" id="ttsSpeakOut"> <input
type="checkbox" name="options"> 选中时朗读
</label>
<label class="btn btn-default" id="IncrementalQuery"> <input
type="checkbox" name="options"> 即时查询
</label>
</div>
<p></p>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"> Keyboard Shortcuts </h3>
</div>
<div class="panel-body">
<div class="list-group">
<a href="#" class="list-group-item">
<label>开始输入 :</label>
<button type="button" class="btn btn-default"> ⌨ Control+i </button>
<button type="button" class="btn btn-default"> ⌨ ⌘+i </button>
</a>
<a href="#" class="list-group-item">
<label>添加入库 :</label>
<button type="button" class="btn btn-default"> ⌨ s s </button>
<button type="button" class="btn btn-default"> ⌨ s Space </button>
<button type="button" class="btn btn-default"> ⌨ Control+s </button>
<button type="button" class="btn btn-default"> ⌨ ⌘+s </button>
</a>
<a href="#" class="list-group-item">
<label>我忘了 :</label>
<button type="button" class="btn btn-default"> ⌨ f f </button>
<button type="button" class="btn btn-default"> ⌨ Control+f </button>
<button type="button" class="btn btn-default"> ⌨ ⌘+f </button>
</a>
<a href="#" class="list-group-item">
<label>发音 :</label>
<button type="button" class="btn btn-default"> ⌨ p </button>
<button type="button" class="btn btn-default"> ⌨ Space </button>
<button type="button" class="btn btn-default"> ⌨ Control+u </button>
<button type="button" class="btn btn-default"> ⌨ ⌘+u </button>
</a>
</div>
</div>
</div>
</div>
</body>
<script src="lib/jquery.js"></script>
<script src="lib/bootstrap/js/bootstrap.min.js"></script>
<script src="preference.js"></script>
<script src="options.js"></script>
</html>