-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (35 loc) · 1.17 KB
/
index.html
File metadata and controls
37 lines (35 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Roulette</title>
<link rel="stylesheet" href="roulette.css" media="screen">
<script src="raphael.js"></script>
<script src="roulette.js"></script>
</head>
<body>
<div id="header">
<h1>Roulette</h1>
<p>Raphaël-rendered roulette wheel.</p>
</div>
<div id="body">
<div id="controls">
<ul>
<li><a href="#" onclick="rouletteSpinner.doTogglePause()">Pause / Play</a></li>
<li><a href="#" onclick="rouletteSpinner.doRollBall()">Roll Ball</a></li>
<li><a href="#" onclick="rouletteSpinner.doTakeBall()">Take Ball</a></li>
</ul>
</div>
<div id="rouletteTable">
<div id="rouletteWheel"></div>
<div id="ballWheel"></div>
<div class="clearfix"></div>
<div id="chipTable"></div>
</div>
</div>
<div class="clearfix"></div>
<div id="footer">
<p>© 2010 Jeff D. Conrad. <a href="https://github.com/ledlogic/roulette/blob/master/LICENSE">MIT License.</a></p>
</div>
</body>
</html>