-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlevel_3.html
46 lines (46 loc) · 1.78 KB
/
level_3.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
<!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="style3.css">
<link rel="shortcut icon" href="./img/favicon.svg" type="image/x-icon">
</head>
<body>
<div class="cnvc">
<canvas id="cnvs"></canvas>
<video style="display: none;" playsinline webkit-playsinline autoplay="" id="screamer">
<source playsinline webkit-playsinline src="./video/консцена.mp4">
</video>
<p id="time">00:00</p> <br>
<img id="pause" src="./img/pause.png" alt="PAUSE">
</div>
<img id="play" onclick="ALL()" src="./img/play.png" alt="play">
<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="script3.js"></script>
</body>
</html>