-
Notifications
You must be signed in to change notification settings - Fork 0
/
end.html
81 lines (77 loc) · 2.04 KB
/
end.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Конец The Evil Vacuum Cleaners</title>
<link rel="shortcut icon" href="./img/favicon.svg" type="image/x-icon">
</head>
<style>
@font-face {
font-family: Jura;
src: url("./fonts/Jura-Bold.ttf")
}
body {
background-image: url('./img/images.jpg');
background-size: cover;
background-repeat: no-repeat;
display: flex;
justify-content: center;
align-items: center;
}
a {
text-decoration: none;
color: rgb(70, 143, 143);
font-size: 20px;
font-family: Jura;
align-self: flex-start;
justify-self: left;
position: absolute;
pointer-events: auto;
}
button {
background-color: rgb(70, 143, 143);
border: 2px solid black;
border-radius: 20px;
margin-right: 20px;
color: rgb(58, 56, 56);
font-family: Jura, sans-serif;
transition: 200ms;
outline: none;
align-self: flex-start;
justify-self: left;
position: absolute;
margin-top: 30px;
pointer-events: auto;
}
button:hover {
transform: scale(1.03);
background-color: rgb(77, 133, 133);
}
video {
width: 100%;
height: 700px;
pointer-events: none;
}
</style>
<body>
<button id="see" type="button">Смотреть</button> <br>
<a href="index.html">Вернуться</a>
<video src="./video/конец.mp4"></video>
<script>
setInterval(()=>{
if(
localStorage.getItem('isVerif_1') != 'true' ||
localStorage.getItem('isVerif_2') != 'true' ||
localStorage.getItem('isVerif_3') != 'true' ||
localStorage.getItem('isVerif_4') != 'true'
) {
document.location.href = "index.html"
}
},100)
document.querySelector('button').addEventListener('click', ()=>{
document.querySelector('video').play()
})
</script>
</body>
</html>