-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (112 loc) · 4.09 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel='stylesheet prefetch' href='https://fonts.googleapis.com/css?family=Open+Sans'>
<link rel='stylesheet prefetch' href='maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="https://dunb17ur4ymx4.cloudfront.net/webstore/favicons/da8e3c2054696565f06405745f80ea7b0766627e.PNG">
<link rel="icon" href="https://dunb17ur4ymx4.cloudfront.net/webstore/favicons/da8e3c2054696565f06405745f80ea7b0766627e.PNG" type="image/x-icon">
<img id="cursor" src="img/cursor.png" />
<style>
#cursor {
width: 25px;
height: 25px;
position: fixed;
z-index: 10000;
}
</style>
</head>
<script>
window.onload = function() {
document.body.addEventListener("mousemove", function(event) {
var x = event.pageX - 1 + "px"
var y = event.pageY + 1 + "px"
document.getElementById("cursor").style.left = x;
document.getElementById("cursor").style.top = y;
})
};
</script>
<body>
<audio id="loading" autoplay loop>
<source class="loading" src="https://cdn.discordapp.com/attachments/291090115730866176/791665012644904990/audio1.mp3" type="audio/mp3">
<a href="http://testpage.com/">
<script type="text/javascript">
// This script will replace itself with a random one of these phrases
var phrases = [
'https://cdn.discordapp.com/attachments/291090115730866176/791665012644904990/audio1.mp3',
'https://www.youtube.com/watch?v=8avNw5EWBYs',
'https://www.youtube.com/watch?v=CM4CkVFmTds'
];
var scripts = document.getElementsByTagName('loading');
var this_script = scripts[scripts.length - 1];
this_script.parentNode.replaceChild(document.createTextNode(phrases[Math.floor(Math.random()*phrases.length)]), this_script);
</script>
</a>
</audio>
<div class="background">
<div class="img-center">
<img src="img/logo-main.png" width="550">
</div>
<div class="container">
<div>
<a href='https://Discord.io/EXTRIZZ5M' target='_blank' class="item discord">
<div class="wrap" style="animation-delay: 6s;">
<img src="img/discord.png" alt="EXTRIZZ5M" width="64" height="64" class="discord">
<span class='discord'>
<p class="subtitle">Join our Discord!</p>
<p class="title">DISCORD.EXTRIZZEN.NET</p>
</span>
</div>
</a>
</div>
</div>
<div class="center">
<p class="subtitledev">Made with ❤️ by</p>
</div>
<div class="wrap" style="animation-delay: 6s;">
<a href='https://linktr.ee/adamdev' target='_blank'>
<span class='adamdev'>
<p class="titledev">@adamdev</p>
</span>
</a>
</div>
</div>
<!--
<div class='hidden_overlay'></div>
<div class="wrap" style="animation-delay: 6s;">
<a href='https://discord.gg/tGFa3bVQgR' target='_blank'>
<span class='button'>
<span class='fa fa-comments'></span>
DISCORDq
</span>
</a>
<a href="#" onClick="goSomewhere(); return false;">
<script type="text/javascript">
</a>
</div>
</div>
-->
<script src="https://code.jquery.com/jquery-1.11.2.min.js" type="text/javascript"></script>
<script src="js/script.js"></script>
<!--<script src="js/firefly.js" type="text/javascript"></script>-->
<script src="js/main.js" type="text/javascript"></script>
<script src="js/randombg.js"></script>
<div id="fare"></div>
<script>
var play = false;
var vid = document.getElementById("loading");
vid.volume = 0.3;
window.addEventListener('keyup', function(e)
{
if (e.which == 69){
vid.volume = Math.min(vid.volume + 0.1,1);
} else if(e.which == 65){
vid.volume = Math.max(vid.volume - 0.1,0);
};
});
</script>
</body>
</html>