forked from yuanhjty/random-roll-call
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (41 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Random Roll Call</title>
<link rel="Shortcut Icon" href="./img/roll-call.png" type="image/png">
<link rel="stylesheet" type="text/css" href="./css/normalize.min.css">
<link rel="stylesheet" type="text/css" href="./css/index.css">
<script type="text/javascript" src="./js/xlsx.core.min.js"></script>
</head>
<body>
<div class="container">
<div class="panel">
<div class="screen">
<div class="roll-item"> </div>
<div class="roll-item"> </div>
<div class="roll-item"> </div>
</div>
<button class="control-btn start-btn"></button>
<div>
<input type="file" id="file">
<label for="file">选择名单</label>
</div>
</div>
</div>
<div class="description">
<div>
输入文件说明
</div>
<div>
1. 输入的 Excel 文件中只能有一个 Sheet
</div>
<div>
2. 输入的 Excel 文件中必须包含姓名列,该列表头在第一行,表头内容为 “姓名”
</div>
</div>
<script src="./js/index.js"></script>
</body>
</html>