-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplay.html
58 lines (50 loc) · 2.38 KB
/
play.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Number Battle</title>
</head>
<body>
<!-- top -->
<div class='fixed-top p-2 bg-white container' style='border-bottom: 3px solid black;'>
<div class='row'>
<div class='col label-player'>Player 0</div>
<div class='col label-room text-end'>Room 0</div>
</div>
</div>
<!-- middle -->
<div class='record container' style='margin-top: 50px; margin-bottom: 185px;'></div>
<!-- bottom -->
<div class='fixed-bottom bg-white p-2 container' style="border-top: 3px solid black;">
<div class='row'>
<div class='col'>
<i class="nes-mario" style='float: left; margin: 0 10px 10px 0;'></i>
<span class='msg-mario'></span>
</div>
</div>
<div class='row'>
<div class='col'>
<input type="number" class="input-num nes-input w-100" placeholder="Input" maxlength="4" />
</div>
<div class='col'>
<button type="button" class="btn-send nes-btn is-primary w-100" style='display: none;'>Send</button>
<button type="button" class="btn-wait nes-btn is-disabled w-100">Send</button>
<button type="button" class="btn-exit nes-btn is-primary w-100" style='display: none;'>Exit</button>
</div>
</div>
</div>
<!-- SCRIPT: bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script>
<!-- SCRIPT: nes.css -->
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link href="https://unpkg.com/nes.css/css/nes.css" rel="stylesheet" />
<!-- SCRIPT: jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<!-- SCRIPT: app -->
<script src='./common.js'></script>
<script src='./play.js'></script>
</body>
</html>