-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (54 loc) · 1.93 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
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Snake Game</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1 style="color: white">Snake Game</h1>
<div id="menu">
<button id="startButton">Start Game</button>
<button id="leaderboardButton">Show Leaderboard</button>
<!-- Кнопка для показа таблицы лидеров -->
</div>
<!-- Счетчик очков -->
<div id="score">Score: 0</div>
<canvas id="gameCanvas" width="300" height="300"></canvas>
<!-- Всплывающее окно при окончании игры -->
<div id="gameOverScreen" class="overlay">
<div class="overlay-content">
<h2>Game Over</h2>
<p id="finalScore"></p>
<!-- Вопрос о сохранении результата -->
<p>Do you want to save your result?</p>
<input type="text" id="playerName" placeholder="Enter your name" />
<button id="saveButton">Save Result</button>
<button id="restartButton">Restart Game</button>
</div>
</div>
<!-- Модалка для таблицы лидеров -->
<div id="leaderboardModal" class="modal">
<div class="modal-content">
<h2>Leaderboard</h2>
<table id="leaderboardTable">
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>Date</th>
<th>Score</th>
</tr>
</thead>
<tbody id="leaderboardBody">
<!-- Здесь будут отображаться данные -->
</tbody>
</table>
<button id="closeLeaderboardButton">Close</button>
<!-- Кнопка для закрытия модалки -->
</div>
</div>
<script type="module" src="index.js"></script>
</body>
</html>