-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 2.16 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
<html>
<head>
<meta charset="utf-8">
<title>ZUST抽奖系统</title>
<link href="./css/style.css" type="text/css" rel="stylesheet" media="screen, projection">
<link href="./css/style1.css" type="text/css" rel="stylesheet" media="screen, projection">
<link href="./css/ui-dialog.css" type="text/css" rel="stylesheet" media="screen, projection">
</head>
<body scroll="no">
<div id="bodybg">
<img src="./images/bodybg1.jpg" class="stretch"/>
</div>
<div class="model hide">
<p><b>标题:</b><input type="text" id="title" class="ui-dialog-autofocus" value="" placeholder="输入标题,可以为空。"/></p>
<p><b>人数:</b><input type="text" id="personCount" class="ui-dialog-autofocus" value="" placeholder="输入人数,请输入数字。"/></p>
<p><b>方格宽:</b><input type="text" id="itemk"></p>
<p><b>方格高:</b><input type="text" id="itemg"></p>
<p class="line"><label><input type="radio" name="ms" style="width:15px;" checked value="50">眼花缭乱模式</label>
<label><input type="radio" name="ms" style="width:15px;" value="300">惊心动魄模式</label></p>
<p><label>蓝色经典<input type="radio" name="pf" style="width:15px;" checked value="1"></label>
<label>清新典雅<input type="radio" name="pf" style="width:15px;" value="2"></label></p>
<p class="line"><label><input type="checkbox" id="reset" value="1"/>重置已产生的抽奖数据</label></p>
</div>
<div class="top">抽奖系统</div>
<div class="items"></div>
<div class="menu">
<div class="help">
按键盘空格键或者字母A可进行抽取,查看帮助请按F1,隐藏请按ESC。
<a href="javascript:;" class="config">高级设定</a>
</div>
<div class="ss">
<h2>中奖结果:</h2>
<ol></ol>
</div>
</div>
<audio id="runingmic" class="hide" loop><source src=".\music\runing.wav"></audio>
<audio id="pausemic" class="hide"><source src=".\music\stop.mp3"></audio>
<script type="text/javascript" src="./js/jquery.js"></script>
<script type="text/javascript" src="./js/jquery.pulsate.min.js"></script>
<script type="text/javascript" src="./js/dialog-plus-min.js"></script>
<script type="text/javascript" src="./js/app.js"></script>
</body>
</html>