forked from clintbellanger/Karma-Slots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (27 loc) · 916 Bytes
/
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
<html>
<head>
<title>Karma Slots!</title>
<script type="text/javascript" src="slots.js"></script>
<link rel="stylesheet" type="text/css" href="slots.css" />
</head>
<body>
<div id="wrap">
<div id="game">
<canvas id="slots" width="160" height="160"></canvas><br />
<button type="button" onclick="spin(1);">1 Line</button>
<button type="button" onclick="spin(3);">3 Lines</button>
<button type="button" onclick="spin(5);">5 Lines</button>
</div>
<div id="info">
<p id="credits"></p>
<p id="log"></p>
</div>
<div id="attribution">
by <a href="http://clintbellanger.net/rpg/" target="_blank">Clint Bellanger</a> and <a href="http://www.youtube.com/brandon75689" target="_blank">Brandon Morris</a>
</div>
</div>
<script type="text/javascript">
init();
</script>
</body>
</html>