-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (67 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>fullpwnmedia</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="https://use.typekit.net/dlr1bba.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="preload" id="preload">
<div class="preload_box"></div>
<h2 class="preload_greet" id="greet">Welcome! This could take a while.</h2>
<i><p id="preload_fun" class="preload_fun">Boo!</p></i>
<div class="indeterminate-progress-bar">
<div class="indeterminate-progress-bar__progress"></div>
</div>
</div>
<div class="main" id="main">
<h1>fullpwnmedia</h1>
<h3>Archiving Australia.</h3>
<div class="videoWrapper">
<div class="ambilightWrapper">
<video id="video" src="https://archive.org/download/abc-dump-20-02-2023/ABCTV_HD-02242023-1824-007.mp4#t=01:09:55" poster="vault_lion.png" playsinline autoplay muted onclick="audiotoggle()"></video>
</div>
</div>
<h2>Where would you like to go?</h2>
<a href="https://archive.org/details/@fullpwnmedia">Internet Archive</a>
<br>
<a href="http://youtube.com/@fullpwn">YouTube</a>
<br>
<a href="imgarchive">imgarchive (Beta)</a>
</div>
</body>
<script>
var va = document.getElementById('video');
function audiotoggle() {
va.muted = !va.muted;
};
va.onerror = function() {
document.getElementById("greet").innerHTML = "Something went wrong loading the page.";
};
va.onplay = function() {
let preload = document.getElementById('preload');
preload.style.display = "none"
}
var archive_test = window.location.hostname
console.log(archive_test)
var textArray = [
'Downloading intergalactic space cows to your device.',
'Boo!',
'Connecting you to Mars.',
'Hacking your IP and sending a burrito to your address.',
'Cooking noodles.',
'Buying a shovel from Bunnings.',
'Getting a snag from Bunnings.',
'Thank you for being here ❤',
'Remember 16GB iPhones? Yeah, let\'s forget that.',
'Remember to check in on your mental health when you get the chance!',
'Live, Laugh, Love.',
];
var randomNumber = Math.floor(Math.random()*textArray.length);
document.getElementById("preload_fun").innerHTML = textArray[randomNumber];
</script>
</html>