forked from konder/wechat-wall
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlottery.html
More file actions
71 lines (69 loc) · 2.58 KB
/
lottery.html
File metadata and controls
71 lines (69 loc) · 2.58 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>抽奖</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/lottery/main.css">
<link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.min.css"/>
<link href="css/bootstrap-yeti.css" rel="stylesheet">
<script src="js/modernizr-2.6.2.min.js"></script>
<script type="text/javascript">
if (!window.localStorage) {
alert('This browser does NOT support localStorage');
}
</script>
</head>
<body>
<div class="container">
<div class="header">
<div class="row">
<div class="col-md-3 title">
<span>云顶科技年会</span>
<small><a href="wall.html">微信墙</a> <a href="shake.html">摇一摇</a> <a href="lottery.html">抽奖</a></small>
</div>
<div class="col-md-7 hudong">
<span>关注 云顶科技 企业号<br/>选择 "小二" 进行现场互动</span>
</div>
<div class="col-md-2 powerby">
<a href="img/qrcode_1280.jpg" ><img src="img/qr.jpeg" height="100px"/></a>
</div>
</div>
</div>
<section class="row">
<section class="col-md-8">
<section class="bingo">
<div class="guy">
<div class="nickname"></div>
<img src="avatar/default.png"/>
</div>
<div class="action">
<button class="start btn-warning btn btn-lg">开始抽奖</button>
<button class="end btn-warning btn btn-lg">停止</button>
</div>
</section>
</section>
<section class="col-md-4">
<section class="result">
<h4>获奖名单</h4>
<hr/>
<ul class="list-unstyled">
</ul>
<div class="action">
<button class="reset btn-danger btn">重置</button>
</div>
</section>
</section>
</section>
<section class="users">
<h4>参与人员 <a href="#" class="add"><i class="fa fa-plus"> </i></a></h4>
<hr/>
<ul class="list-inline list-unstyled">
</ul>
</section>
</div>
<script type="text/javascript" src="bower_components/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="bower_components/underscore/underscore-min.js"></script>
<script data-main="js/lottery/main.js" src="bower_components/requirejs/require.js"></script>
</body>
</html>