-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (26 loc) · 900 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
37
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" href="styles/main.css">
</head>
<body>
<div id="slot-game">
<canvas id="spin-buffer" height="930px" width="235px"></canvas>
<div id="spin-wrap">
<canvas id="slot-spin" height="155px" width="235px"></canvas>
</div>
<div id="game-result-wrap"></div>
<select id="bet-dropdown"></select>
<button id="play-game"></button>
</div>
<div id="loading-overlay">
</div>
<script type="text/javascript" src="js/resModel.js"></script>
<script type="text/javascript" src="js/GameUtils.js"></script>
<script type="text/javascript" src="js/SlotGame.js"></script>
<script type="text/javascript" src="js/ResManager.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>