-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlevel_4.html
45 lines (44 loc) · 1.62 KB
/
level_4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Evil Vacuum Cleaner</title>
<link rel="stylesheet" href="style4.css">
<link rel="shortcut icon" href="./img/favicon.svg" type="image/x-icon">
</head>
<body>
<br>
<div class="cnvc">
<canvas id="cnvs"></canvas>
<p id="time">00:00 / 01:25 | 0 / 25</p> <br>
<img id="pause" src="./img/pause.png" alt="PAUSE">
<button id="space" type="button">Раздовить</button>
</div>
<div class="dialogs">
<dialog id="deadModal">
<h1>Вы проиграли!</h1>
<div class="buttons">
<button id="reload">Начать заново</button>
<button id="toMainMenu">В главное меню</button>
</div>
</dialog>
<dialog id="winModal">
<h1>Вы победили!</h1>
<div class="buttons">
<button id="reload_">Начать заново</button>
<button id="toMainMenu_">В главное меню</button>
</div>
</dialog>
<dialog id="pauseModal">
<h1>Вы находитесь в меню паузы!</h1>
<div class="buttons">
<button id="reload__">Начать заново</button>
<button id="toMainMenu__">В главное меню</button>
<button id="closeModal">Закрыть</button>
</div>
</dialog>
</div>
<script src="script4.js"></script>
</body>
</html>