-
Notifications
You must be signed in to change notification settings - Fork 17
/
Casiono.html
80 lines (66 loc) · 2.9 KB
/
Casiono.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
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
72
73
74
75
76
77
78
79
80
<!doctype html>
<!--
David Dada
Casino Simulator
-->
<html lang="en">
<head>
<title>Casino Bet Simulator</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<link rel="stylesheet" href="Casiono.css">
</head>
<body>
<figure id='panelWheel'>
<img title='click me to spin!' alt="spin wheel" src='Resources/wheel1.png'/>
</figure>
<div id='panelOptions'>
<form id='formOptions'>
<div class='dropdown'>
<button class='dropbtn'>on win</button>
<div class='dropdown-content'>
<input type='radio' id='option-1win' name='onWinButton' value='0'>
<label for='option-1win'>stop</label>
<input type='radio' id='option-2win' name='onWinButton' value='0.5'>
<label for='option-2win'>50%</label>
<input type='radio' id='option-3win' name='onWinButton' value='1' checked>
<label for='option-3win'>100%</label>
<input type='radio' id='option-4win' name='onWinButton' value='2'>
<label for='option-4win'>200%</label>
</div>
</div>
<div class='dropdown'>
<button class='dropbtn'>on loss</button>
<div class='dropdown-content'>
<input type='radio' id='option-1loss' name='onLoseButton' value='0'>
<label for='option-1loss'>stop</label>
<input type='radio' id='option-2loss' name='onLoseButton' value='0.5'>
<label for='option-2loss'>50%</label>
<input type='radio' id='option-3loss' name='onLoseButton' value='1' checked>
<label for='option-3loss'>100%</label>
<input type='radio' id='option-4loss' name='onLoseButton' value='2'>
<label for='option-4loss'>200%</label>
</div>
</div>
<input type='button' id='resetButton' class='dropbtn' value='reset'/>
<div class='radio-group'>
<input type='radio' id='option-one' name='loopSelector' value='1' checked>
<label for='option-one'>1x</label>
<input type='radio' id='option-two' name='loopSelector' value='10'>
<label for='option-two'>10x</label>
<input type='radio' id='option-three' name='loopSelector' value='50'>
<label for='option-three'>50x</label>
</div>
<input class='fine' id='betAmount' name='betAmount' type='text' value='0' placeholder='Bet Amount:'>
</form>
</div>
<div id='panelDisplay'>
<div id='currentCash'>$<span id='cash'>0</span></div>
<figure id='moneybag'>
<img title='click me to add cash' alt='click to reset' src='Resources/moneybag.png'/>
</figure>
<div id='spinCount'>Spin: <span id='spin'>0</span> Win: <span id='win'>0</span> Lose: <span id='lose'>0</span></div>
</div>
<script src="Casiono.js"></script>
<noscript>Please enable JavaScript</noscript>
</body>
</html>