-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (41 loc) · 1.56 KB
/
index.html
File metadata and controls
45 lines (41 loc) · 1.56 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dronoid</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Bungee&display=swap" rel="stylesheet">
</head>
<body>
<div class="game-container">
<div class="info-text">Grasz mychą albo panelem dotykowym</div>
<div id="stats-bar">
<div id="score">Punkty: 0</div>
<div id="bounces">Odbicia: 0</div>
<div id="lives">Życia: 3</div>
<div id="level">Poziom: 1</div>
</div>
<div class="game-area">
<h1 id="dronoidTitle" style="display: none;">Dronoid</h1>
<div id="bricks-container"></div>
<div class="paddle" id="paddle"></div>
<div class="ball" id="ball"></div>
<div id="bum" class="bum-effect">BUM</div>
<div id="finalScore" class="final-score" style="display: none;">Gościu, obiłeś piłkę: <span id="scoreCount">0</span> razy</div>
<div id="nextLevelMessage" style="display: none;"><h2>NASTĘPNY LEVEL</h2></div>
</div>
<div id="powerUpMessage" style="display: none;"></div>
</div>
<div class="controls">
<button id="startButton">Zacznij odbijać</button>
<button id="infinityModeButton">Tryb nieskończoności</button>
<button id="restartGameButton">Od początku</button>
</div>
<div id="gameOver" style="display: none;">
<h2>Game Over</h2>
<button id="restartButton">Odbijaj od nowa</button>
</div>
<script src="script.js"></script>
</body>
</html>