forked from newghost/js-lottery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lottery_phone.html
36 lines (31 loc) · 1.09 KB
/
lottery_phone.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
<!doctype html>
<html lang="en">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta http-equiv="X-UA-Compatible" content="IE=9" />
<title>Photo Lottery Example</title>
<link rel="stylesheet" type="text/css" href="res/lottery.css" />
<link rel="stylesheet" type="text/css" href="res/fireworks.css" />
<style>.stop .snow{visibility: hidden;}</style>
</head>
<body class="byphone stop">
<div id="wrapper">
<div id="lottery">
<div id="lottery-hero">
<span></span>
</div>
<div id="lottery-container" data-url="phone.txt">
<ul></ul>
</div>
<div id="lottery-control">
<a href="#" onclick="Lottery.start()">START</a>
<a href="#" onclick="Lottery.stop()">STOP</a>
</div>
<div id="lottery-selected"></div>
</div>
</div>
<script type="text/javascript" src="res/jquery-1.9.0.min.js"></script>
<script type="text/javascript" src="res/snowstorm.js"></script>
<script type="text/javascript" src="res/lottery_phone.js"></script>
</body>
</html>