-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (56 loc) · 1.87 KB
/
index.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
<!doctype html>
<html>
<head>
<title>mingju</title>
<meta charset="utf-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Oswald|Roboto" rel="stylesheet">
<script type="text/javascript" src="mingju.js"></script>
<link rel="stylesheet" href="mingju.css" />
<link rel="stylesheet" href="common.css" />
</head>
<body>
<div id="intro">
<h2>欢迎来到PT3/SPM名句测验站!</h2>
<!-- TODO: Timeout; Wrong limit -->
<p class="headerq">请选择你所要测验的名句:</p>
<div id="sel1">
<input type="checkbox" id="z0" name="mjtype" value="ybb">
<label for="ybb">预备班</label>
<input type="checkbox" id="z1" name="mjtype" value="z1">
<label for="z1">中一</label>
<input type="checkbox" id="z2" name="mjtype" value="z2">
<label for="z2">中二</label>
<input type="checkbox" id="z3" name="mjtype" value="z3">
<label for="z3">中三</label>
<input type="checkbox" id="z4" name="mjtype" value="z4">
<label for="z4">中四</label>
<input type="checkbox" id="z5" name="mjtype" value="z5">
<label for="z5">中五</label>
</div>
<!-- TODO: Custom mingju, selection -->
<p class="headerq">请选择你所要被测验的名句数量:</p>
<input type="number" id="mjNum" min="1" max="1000" value="10" />
<button class="navy-button" onclick="firstsetup()" style="margin-top:9px">确认</button>
</div>
<div id="qDisplay" style="display:none">
<div id="qNumDisplay">
<h1>问题 </h1>
<h1 id="count">1</h1>
<h3> - </h3>
<h3 id="level"></h3>
</div>
<br/>
<br/>
<div id="inputDisplay">
<p id="before"></p>
<input type="text" id="input1" value="" />
<p id="after"></p>
</div>
<br />
<div id="bottombar">
<button class="navy-button" id="checkButton" onclick="check()">查对</button>
</div>
</div>
</body>
<html/>