-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
37 lines (37 loc) · 1.84 KB
/
game.html
File metadata and controls
37 lines (37 loc) · 1.84 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Boxpect - Playing</title>
<link href="/css/index.css" rel="stylesheet">
<link href="/css/game.css" rel="stylesheet">
<script src="/js/game.js"></script>
<audio id="audioClickCorrect"><source src="/assets/audio/coin.mp3" type="audio/mp3"></audio>
<audio id="audioClickBomb"><source src="/assets/audio/bomb.mp3" type="audio/mp3"></audio>
<audio id="audioWin"><source src="/assets/audio/win.mp3" type="audio/mp3"></audio>
<audio id="audioLose"><source src="/assets/audio/lose.mp3" type="audio/mp3"></audio>
</head>
<!-- Row IDs start at 0! -->
<body onload = "generate()">
<div id="content">
<div class="main" id="info">
<p>Bombs: <strong id="remaining">--</strong></p>
<p>Packages searched: <strong><span id="counter">0</span> / <span id="counterMax">--</span></strong></p>
<p>Time: <strong><span id="timerMinutes">00</span>:<span id="timerSeconds">00</span></strong></p>
<!-- <p>Best time: <strong><span id="bestMinutes">--</span>:<span id="bestSeconds">--</span></strong></p> -->
<a href="/index.html">Home</a> <button onClick="location.reload()">Restart</button>
</div>
<div id="play">
<div id="game" class="main">
<div class="pkg"></div>
</div>
<div id="overlay"><center>
<h1>Lorem ipsum</h1>
<p>Dolor sit amet or smth</p>
</center></div>
</div>
</div>
<center><footer><em>©Norcith 2026 | <a href="https://github.com/Norcith/Boxpect/issues">Report an issue</a>.<br>This game was inspired by the awesome <a href="https://store.steampowered.com/app/2455920/Mimic_Logic/">Mimic Logic</a> and <a href="https://cluesbysam.com/">Clues By Sam</a>. Make sure to check them out !</em></footer></center>
</body>
</html>