This repository has been archived by the owner on Nov 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
options.html
146 lines (115 loc) · 4.78 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<head>
<title>教学立方辅助工具设置</title>
</head>
<style type="text/css">
.option_panel {
margin-top: 10px;
margin-right: 15px;
margin-left: 15px;
padding: 10px 20px 10px 20px;
}
.title_1 {
margin-bottom: 15px;
}
.title_2 {
margin-bottom: 15px;
}
.item {
margin: 5px 0px 5px 0px;
vertical-align: middle;
}
.item>input {
vertical-align: middle;
}
.item>span:not(.explanation) {
vertical-align: middle;
margin-left: 5px;
}
.item>.explanation {
height: 14px;
width: 14px;
vertical-align: middle;
}
hr {
margin-top: 15px;
margin-bottom: 15px;
}
#b_area {
text-align: center;
}
#b_area>button {
margin: 5px 15px 0 15px;
padding: 5px 15px 5px 15px;
}
#info {
font-style: italic;
}
</style>
<body>
<div>
<div class="option_panel">
<h1 id="title" class="title_1">设置</h1>
<div>
<form>
<div class="item"><input class="cbox" type="checkbox" id="default_apply">
<img class="explanation" src="question.png" title="开启后,无需点击插件图标,网页加载完毕后自动应用功能,不稳定,慎用">
<span>开启背景模式(不稳定实验功能,不推荐使用)</span>
</div>
<div class="item"><input class="cbox" type="checkbox" id="hidekf">
<img class="explanation" src="question.png" title="开启后,将隐藏界面上悬浮客服按钮的遮挡">
<span>隐藏客服按钮</span>
</div>
<hr>
<h2 class="title_2">老师/助教功能</h2>
<div class="item">
<input class="cbox" type="checkbox" id="preview_image">
<img class="explanation" src="question.png" title="直接预览格式为.png/.jpg/.jpeg格式的图片附件">
<span>预览图片附件</span>
</div>
<div class="item">
<input class="cbox" type="checkbox" id="rotate_image">
<img class="explanation" src="question.png" title="左键单击图片(无论是附件预览还是原先插入的),可以直接旋转">
<span>允许旋转图片(如若无效刷新页面)</span>
</div>
<div class="item">
<input class="cbox" type="checkbox" id="move_ratebutton">
<img class="explanation" src="question.png" title="将“评阅”按钮变为浮动,在屏幕底部始终可以看见">
<span>优化“评阅”按钮位置</span>
</div>
<div class="item">
<input class="cbox" type="checkbox" id="use_ratebox">
<img class="explanation" src="question.png" title="为每个图片下方添加笔记框,自动汇总到评阅;如果开启了优化评阅位置功能,还会增加一个浮动的笔记框(无论有没有图片)始终在屏幕上可见">
<span>分散评阅</span>
</div>
<div class="item">
<input class="cbox" type="checkbox" id="add_signature">
<img class="explanation" src="question.png" title="在总评后面添加一段类似个人签名的文字,非常适合用于多人分工时标记批改人">
<span>评阅后缀:</span>
<input type="text" class="sbox" id="signature" autocomplete="off">
</div>
<hr>
<h2 class="title_2">学生功能</h2>
<div class="item">
<input class="cbox" type="checkbox" id="download_lesson">
<img class="explanation" src="question.png"
title="增加一个一键复制按钮,可以粘贴到下载软件内实现批量下载">
<span>一键复制下载链接</span>
</div>
</form>
</div>
<hr>
<div id="b_area">
<button id="save">保存</button>
<button id="reset">默认</button>
</div>
<div id="status">
<p id="info">当前状态:未保存。</p>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="options.js"></script>
</html>