-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (80 loc) · 2.48 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Slugs Wars</title>
<!-- Include external libraries -->
<style>
body,html {
overflow: hidden;
}
@font-face {
font-family: 'Starjedi';
src: url('Starjedi.ttf');
}
#intro {
display: block;
}
.score, .hint, .powerup, #loading {
position: absolute;
z-index: 1000;
font-weight: bold;
font-size: 20px;
top: 20px;
left: 20px;
color: #000;
text-shadow: -2px -2px 0 #ffd54e, -2px -1px 0 #ffd54e, -2px 0 0 #ffd54e, -2px 1px 0 #ffd54e, -2px 2px 0 #ffd54e, -1px -2px 0 #ffd54e, -1px -1px 0 #ffd54e, -1px 0 0 #ffd54e, -1px 1px 0 #ffd54e, -1px 2px 0 #ffd54e, 0 -2px 0 #ffd54e, 0 -1px 0 #ffd54e, 0 0 0 #ffd54e, 0 1px 0 #ffd54e, 0 2px 0 #ffd54e, 1px -2px 0 #ffd54e, 1px -1px 0 #ffd54e, 1px 0 0 #ffd54e, 1px 1px 0 #ffd54e, 1px 2px 0 #ffd54e, 2px -2px 0 #ffd54e, 2px -1px 0 #ffd54e, 2px 0 0 #ffd54e, 2px 1px 0 #ffd54e, 2px 2px 0 #ffd54e;
font-size: 50px;
font-family: 'Starjedi';
line-height: 86%;
caret-color: #ffd54e;
letter-spacing: normal;
}
#intro {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
display: block;
z-index: 10000000;
}
#loading {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
font-size: 30px;
display: block;
z-index: 100000000001;
line-height: 200px;
text-align: center;
top: 0;
cursor: pointer;
background: #000;
}
</style>
<script>
function playVideo() {
document.getElementById("loading").style.display = "none"
document.getElementById("intro").play()
}
function main() {
let vid = document.getElementById("intro")
if(vid) {
vid.ontimeupdate = function() {
if(vid.currentTime >= 88) {
window.location.href = "driver.html"
}
};
}
}
</script>
</head>
<body onload="main()">
<div id="loading" onclick="playVideo()">Click here to start!</div>
<video id="intro">
<source src="intro.mp4" type="video/mp4">
</video>
</body>
</html>