This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (39 loc) · 1.65 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1.0, user-scalable=no"/>
<title>题海——用户可自定义题库的平台</title>
<link rel="shortcut icon" href="./icon.ico">
<link rel="stylesheet" href="./css/button.css">
<link rel="stylesheet" href="./css/question.css">
</head>
<body>
<div id="info">
<span id="main">当前程序版本:1.0.0(12)</span><br>
<span id="lib"></span>
</div>
<div id="select">
<br><span>选择题库:</span>
<select id="choose">
<option value="yylj-offical" label="岳阳楼记"></option>
</select>
<input id="import" type="file" accept=".json5" onchange="importLib();">
</div>
<div id="area">
<span id="q" class="question"></span>
<div id="a"></div>
</div>
<br>
<button id="editor" type="button" class="btn btn1" onclick="window.open('./LibEditor.html');">题库编辑器</button>
<h2>Windows版本下载</h2>
<span>
1. <a href="https://www.123pan.com/s/NIhZVv-CHUW3.html">点此下载</a>
2. 前往<a href="https://github.com/adproqwq/TestLib/releases">Github Releases</a>下载
</span>
<script src="https://cdn.bootcdn.net/ajax/libs/json5/2.2.3/index.min.js"></script>
<script src="./src/index.js"></script>
<script src="./src/listen.js"></script>
<script>getLib();</script>
</body>
</html>