-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhehehaw.html
More file actions
51 lines (48 loc) · 1.68 KB
/
hehehaw.html
File metadata and controls
51 lines (48 loc) · 1.68 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>QR Page</title>
<style>
body{
font-family: Arial, Helvetica, sans-serif;
text-align: center;
padding-top: 50px;
background-color: black;
color: yellow;
}a
iframe{
margin-top: 20px;
}
.hidden{
display: none;
}
</style>
</head>
<body>
<h1 id="header1" class="hidden">This is not the page you're looking for</h1>
<h2 id="header2" class="hidden">...but if it were, it might look a little something like this:</h2>
<video id="mustafarVideo" class="hidden" width="720" height="405" autoplay muted controls>
<source src="fixed_output.mp4" type="video/mp4">
</video>
<script>
setTimeout(() => {
document.getElementById("header1").classList.remove("hidden");
}, 0);
setTimeout(() => {
document.getElementById("header2").classList.remove("hidden");
}, 5000);
setTimeout(() =>{
const video = document.getElementById("mustafarVideo");
document.getElementById("mustafarVideo").classList.remove("hidden");
document.body.addEventListener("click", () => {
if(!video.muted){
video.muted = true;
video.volume = 1.0;
video.play();
}
});
}, 6000);
</script>
</body>
</html>