forked from gavinjzx/luckyDraw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (36 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="css/style.css"/>
<link rel="stylesheet" href="css/animate.css"/>
<script src="js/lib/jquery-1.12.4.min.js"></script>
<script src="js/lib/common.js"></script>
<script src="js/index.js"></script>
</head>
<body>
<div>
<header>
<div></div>
</header>
<section>
<div class="hide" id="luckyDrawing"><input id="showName" readonly type="text"></div>
<div class="hide" id="result">
<div></div>
</div>
</section>
<footer>
<div><input type="number" id="txtNum" value="" placeholder="请输入中奖人数">
<button id="btnStart">开始</button>
<button id="btnReset"> </button>
</div>
</footer>
</div>
<div id="bgLuckyDrawEnd"></div>
<div id="iconDiv" class="animated fadeIn"><span><img src="css/img/icon/01.png"> </span><span><img
src="css/img/icon/02.png"> </span><span><img src="css/img/icon/03.png"> </span><span><img
src="css/img/icon/04.png"> </span><span><img src="css/img/icon/05.png"> </span><span><img
src="css/img/icon/06.png"> </span></div>
</body>
</html>