-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
82 lines (69 loc) · 2.66 KB
/
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
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
81
82
<!DOCTYPE html>
<html>
<head>
<title>Игра Рулетка - Novvember</title>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Merriweather&display=swap" rel="stylesheet">
<link rel="icon" href="../img/favicon.png" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="style-2019.css">
<style type="text/css">
.bets, .roulette {
display: inline-block;
vertical-align: top;
width: 350px;
}
</style>
</head>
<body>
<nav>
<ul>
<li><a href="../"><span class="home" title="Главная страница"></span></a></li>
</ul>
</nav>
<main>
<h1>Игра Рулетка</h1>
<p>Пришли в казино с тысячей, а тут рулетка.</p>
<p>Настоящая рулетка с 36 цифровыми ячейками и одним «зеро». Можно ставить на конкретное число (так выигрыш больше), а можно, например, на черное (так проще угадать).</p>
<p><em>Делайте ваши ставки!</em></p>
<h2 id="balance">Деньги: 1000 ₽</h2>
<div class="bets">
<h2>Ставки</h2>
<form>
<section>
<h3>Ставка на группу<br>(выигрыш 1:1)</h3>
<div>
<input type="number" id="betRed" placeholder="Красное" min="0" max="10000"> /
<input type="number" id="betBlack" placeholder="Чёрное" min="0" max="10000">
<br>
<input type="number" id="betEven" placeholder="Чётное" min="0" max="10000"> /
<input type="number" id="betOdd" placeholder="Нечётное" min="0" max="10000">
<br>
<input type="number" id="betSmall" placeholder="(1-18)" min="0" max="10000"> /
<input type="number" id="betBig" placeholder="(19-36)" min="0" max="10000">
</div>
</section>
<section>
<h3>Ставка на одно число<br>(выигрыш 35:1)</h3>
<div>
<input type="number" id="betTheNumber" placeholder="Число" min="0" max="36">
<input type="number" id="betNumber" placeholder="Ставка" min="0" max="10000">
</div>
</section>
<div>
<br>
<button type="button" onclick="makeBets()" id="makeBetsButton">Сделать ставки</button>
<button type="reset" id="resetButton">Убрать ставки</button>
<p><em><span id="text"></span></em></p>
</div>
</form>
</div>
<div class="roulette">
<h2>Рулетка</h2>
<button type="button" onclick="goRoulette();" id="goRouletteButton" disabled>Бросить шарик</button>
<h3 id="ball"></h2>
<p><em><span id="textRoulette"></span></em></p>
</div>
</main>
<script src="roulette.js"></script>
</body>
</html>