-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlottery.html
48 lines (48 loc) · 1.29 KB
/
lottery.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
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>社会监督员抽取系统</title>
<link href="css/css.css" type="text/css" rel="stylesheet">
<head>
<script type="text/javascript" src="js/lottery.js"></script>
<script type="text/javascript">
</script>
</head>
<body>
<div style="text-align: center; padding-top:10px;">
<h1>社会监督员抽取系统</h1>
</div>
<div id="container">
<div id="userlist">
<div id="importlist" class="button">
导入名单
</div>
<ol id="ollist">
</ol>
</div>
<div id="lottery">
<div id="lo1">
</div>
</div>
<div id="control">
<button id="start" class="button control">开始</button>
<button id="stop" class="button control">停止</button>
<button id="continue" class="button control">继续</button>
</div>
<div id="winner">
<ol id="olwinner">
</ol>
</div>
<div id="hidelottery" hidden>
<img src="images/wm.png" />
</div>
</div>
<div id="layer" hidden>
<label>将要抽取的名单粘贴到下面文本框,多个名单以英文逗号“,”分割。例如:张无忌,刘德华</label>
</br>
<textarea id="textarea"></textarea>
<br/>
<button id="saveuser" class="button control">保存</button>
</div>
</body>
</html>