-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
64 lines (53 loc) · 1.88 KB
/
index.htm
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
<!DOCTYPE html>
<html lang="en">
<meta content="L33T HAXOR" property="og:title" />
<meta content="We ARe ANonYmus!1!!" property="og:description" />
<meta content="https://Lotus-xml.github.io/" property="og:url" />
<meta content="https://picfiles.alphacoders.com/265/thumb-1920-26551.jpg" property="og:image" />
<meta content="#43B581" data-react-helmet="true" name="theme-color" />
<html>
<!-- i stole most of this from here UwU :3 https://gist.githubusercontent.com/Techgokul/e434ea602bda6840d5ebf95c4be5ebeb/raw/2f42f59a0875dfe620a78a9fd212aa3d67a27e20/Matrixrain.html -->
<head>
<title>L33T HAXOR</title>
<style>
* {margin: 0; padding: 0;}
body {background: black;}
canvas {display: block;}
</style>
</head>
<body>
<canvas id="c"></canvas>
</body>
<script>
var c = document.getElementById("c");
var ctx = c.getContext("2d");
c.height = window.innerHeight;
c.width = window.innerWidth;
var english = "ほまみむめもやゆよ1234567890-=qwertyuiop[]\asdfghjkl;'zxcvbnm,./~!@#$%^&*()_+QWERTYUIOP{}|ASDFGHJKL:ZXCVBNM<>?らロワ𓂺𓂸你ヲンأنا أحب الطعام العرب☭ي"
english = english.split("");
var font_size = 16;
var columns = c.width/font_size;
var drops = [];
for(var x = 0; x < columns; x++)
drops[x] = 1;
function draw() {
ctx.fillStyle = "rgba(0, 0, 0, 0.05)";
ctx.fillRect(0, 0, c.width, c.height);
for(var i = 0; i < drops.length; i++) {
var text = english[Math.floor(Math.random()*english.length)];
if(Math.random() < 0.003) {
ctx.fillStyle = "#FF0000";
text = "UwU I'm An Elite Haxor"
} else {
ctx.fillStyle = "#0F0";
}
ctx.fillText(text, i*font_size, drops[i]*font_size);
if(drops[i]*font_size > c.height && Math.random() > 0.975) {
drops[i] = 0;
}
drops[i]++;
}
}
setInterval(draw, 34);
</script>
</html>