-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (142 loc) · 4.74 KB
/
index.html
File metadata and controls
148 lines (142 loc) · 4.74 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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website Taken Down</title>
<link rel="icon" href="files/favicon.ico" type="image/x-icon">
<style>
body {
background-color: black;
margin: 0;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
color: white;
font-size: 24px;
cursor: url('files/cursor/Arrow.cur'), auto;
user-select: none;
}
img {
width: 350px;
height: auto;
margin-top: 20px;
cursor: url('files/cursor/Hand.cur'), pointer;
transition: transform 0.3s ease;
}
img:hover {
transform: scale(1.05);
}
.content {
margin-top: 20px;
text-align: center;
font-family: 'Consolas', monospace;
font-size: 1.8em;
color: red;
font-weight: bold;
animation: flicker 0.75s infinite alternate;
text-transform: uppercase;
}
.message {
font-family: 'Consolas', monospace;
font-size: 1.2em;
color: white;
margin-top: 10px;
text-align: center;
}
.promise {
font-family: 'Courier', monospace;
font-size: 1.4em;
color: red;
margin-top: 20px;
margin-bottom: 30px;
animation: glowing 1.5s infinite alternate;
text-align: center;
font-weight: normal;
}
@keyframes flicker {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.6;
}
}
@keyframes glowing {
0% {
text-shadow: 0 0 3px red, 0 0 5px red, 0 0 10px red, 0 0 15px red;
}
50% {
text-shadow: 0 0 5px red, 0 0 10px red, 0 0 20px red, 0 0 25px red;
}
100% {
text-shadow: 0 0 3px red, 0 0 5px red, 0 0 10px red, 0 0 15px red;
}
}
.message-line {
font-family: 'Consolas', monospace;
font-size: 1.5em;
color: lime;
overflow: hidden;
white-space: nowrap;
width: 0;
animation: typing 2s steps(30, end) forwards;
margin: 0;
text-align: center;
}
.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 2.5s; }
.line-3 { animation-delay: 5s; }
.line-4 { animation-delay: 7.5s; }
.line-5 { animation-delay: 18.5s; }
@keyframes typing {
from { width: 0; }
to { width: 100%; }
}
</style>
</head>
<body>
<audio id="background-music" src="files/audio.mp3" loop></audio>
<img src="files/image.png" alt="Image" title="Click me" onclick="playAudio()" />
<div class="content">
<strong>THIS DOMAIN HAS BEEN SEIZED BY AnonKryptiQuz</strong>
</div>
<div class="message">
You have crossed a dangerous line.<br>
Stop all attempts to track down AnonKryptiQuz.<br>
You have provoked something you cannot control.
</div>
<div class="promise">
This is not a threat. This is a promise.
</div>
<div id="anonymous-messages" style="display: none;">
<p class="message-line line-1">We Are Anonymous.</p>
<p class="message-line line-2">We Are Legion.</p>
<p class="message-line line-3">We Do Not Forgive.</p>
<p class="message-line line-4">We Do Not Forget.</p>
<p class="message-line line-5">Expect Us.</p>
</div>
<script>
const audio = document.getElementById('background-music');
function playAudio() {
audio.currentTime = 46;
audio.play().catch(error => {
console.log('Audio playback prevented:', error);
});
setTimeout(showAnonymousMessages, 1000);
}
function showAnonymousMessages() {
document.getElementById('anonymous-messages').style.display = 'block';
}
document.addEventListener('contextmenu', function(event) {
event.preventDefault();
});
document.addEventListener('keydown', function(event) {
if (event.ctrlKey && (event.key === 'u' || event.key === 'I' || event.key === 'i')) {
event.preventDefault();
}
});
</script>
</body>
</html>