-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (55 loc) · 2.14 KB
/
index.html
File metadata and controls
59 lines (55 loc) · 2.14 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
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stack Da Catz 🐱</title>
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;800&display=swap" rel="stylesheet" />
</head>
<body>
<div id="ui">
<div id="header">
<h1>Stack Da Catz 🐱</h1>
<div id="stats">
<div class="stat-box">
<span class="stat-label">Level</span>
<span class="stat-value" id="level-display">1</span>
</div>
<div class="stat-box">
<span class="stat-label">Score</span>
<span class="stat-value" id="score">0</span>
</div>
<div class="stat-box">
<span class="stat-label">Best</span>
<span class="stat-value" id="best">0</span>
</div>
</div>
</div>
<div id="controls-hint">← → to aim | SPACE to start / drop early | R to restart</div>
</div>
<canvas id="game"></canvas>
<!-- ── Start screen ─────────────────────────────────────────────────── -->
<div id="start-overlay">
<div id="start-box">
<div class="start-emoji">🐱</div>
<h2 class="start-title">Stack Da Catz</h2>
<p class="start-msg">Stack cats on a shrinking table.<br>Survive 3 levels to reach <strong>Endless Mode</strong>!</p>
<div id="start-buttons">
<button id="play-btn">Play 🐾</button>
<button id="endless-btn">Skip to Endless 😸</button>
</div>
</div>
</div>
<div id="overlay" class="hidden">
<div id="overlay-box">
<div id="overlay-emoji">😿</div>
<h2 id="overlay-title">A kitty fell off!</h2>
<p id="overlay-msg">You stacked <span id="final-score">0</span> cats!</p>
<button id="restart-btn">Play Again 🐾</button>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/matter-js/0.19.0/matter.min.js"></script>
<script src="script.js"></script>
</body>
</html>