-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (49 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style/pkengine.css">
<title>Document</title>
</head>
<body>
<div id="gameTable">
<div class="mfield pfield">
Community Cards: <br>
<div id="commPark" class="mfield">
<div class="cardPark"></div>
<div class="cardPark"></div>
<div class="cardPark"></div>
<div class="cardPark"></div>
<div class="cardPark"></div>
</div>
</div>
<div id="cparkP1" class="cparkPlayer">
<div class="playerBet">20</div>
<div class="playerName">John</div>
<div class="playerBadge"><span style="border-radius: 24px; color: #FFF; background-color: #000;">B</span></div>
<div class="pCard1 cardPark">7♥</div>
<div class="pCard2 cardPark">A♠</div>
<div class="playerChipStack">1080</div>
<div class="playerstatus">RAISE</div>
</div>
</div>
<div id="menuBar" class="mfield">
<button id="btnNewGame">New Game</button>
</div>
<div id="gameMenu" class="mfield">
<form action="">
Num players: <input type="text" placeholder="Number of Players (1-8)"><br>
Small Blind: <input type="text" placeholder="Small Blind"><br>
Big Blind: <input type="text" placeholder="Big Blind"><br>
Ante: <input type="text" placeholder="Ante"><br>
<button>Start New Game</button>
</form>
</div>
<script src="PKEngine/names.js"></script>
<script src="PKEngine/pkengine.js"></script>
<script src="PKEngine/pkgame.js"></script>
<script src="script/index.js"></script>
</body>
</html>