-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathhole-cards.html
More file actions
57 lines (52 loc) · 2.25 KB
/
Copy pathhole-cards.html
File metadata and controls
57 lines (52 loc) · 2.25 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no'>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Poker">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="theme-color" content="#ccc" />
<title>Hole Cards</title>
<link rel="apple-touch-icon" href="icons/180x180.png" />
<link rel="shortcut icon" href="icons/favicon.png">
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Secular+One&display=swap" rel="stylesheet">
</head>
<body id="hole-cards">
<div id="single">
<div class="hole-cards ">
<img class="big" src="cards/1B.svg">
<img class="big" src="cards/1B.svg">
<div class="pill win-probability hidden"></div>
<div class="pill hand-strength hidden"></div>
</div>
<h3>Player Name</h3>
<div class="chips"><span class="total">2000</span><span class="bet hidden">0</span><span id="pot"
class="hidden">0</span>
</div>
<div id="single-action-panel" class="hidden">
<section class="actions">
<button type="button" id="single-fold-button" class="hidden" name="button">Fold</button>
<button type="button" id="single-action-button" class="hidden" name="button">Check</button>
<div id="single-amount-controls" class="amount-controls hidden">
<button type="button" id="single-amount-decrement-button" class="amount-step-button"
name="button">-</button>
<input type="range" id="single-amount-slider" name="amount" value="0" min="0" max="2000" step="10">
<output id="single-slider-output">0</output>
<button type="button" id="single-amount-increment-button" class="amount-step-button"
name="button">+</button>
</div>
<a id="single-switch-link" class="action-link hidden" href="remoteTable.html">switch to full table
view</a>
</section>
</div>
<div id="singleview-notifications" class="hidden">
</div>
</div>
<script type="module" src="./js/singleView.js"></script>
</body>
</html>