-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
157 lines (129 loc) · 5.51 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
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
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html>
<head>
<title>Matrix Rain</title>
<style>
body {
margin: 0;
overflow: hidden;
background: black;
}
canvas {
display: block;
image-rendering: crisp-edges;
}
</style>
</head>
<body>
<!--
Filename: matrix-rain.html
Author: Daethyra Carino <[email protected]>
Date: 2025-01-26
Version: v0.1.1
License: MIT (c) 2025 Daethyra Carino
Description: A responsive, multilingual Matrix-style code rain animation featuring glowing green characters (Katakana, Latin, Hanzi, Hangul) with dynamic trails, variable fall speeds, and random resets. Built with HTML5 Canvas.
-->
<canvas id="matrix"></canvas>
<script>
const canvas = document.getElementById('matrix');
const ctx = canvas.getContext('2d');
// Character sets
const katakana = 'アァカサタナハマヤャラワガザダバパイィキシチニヒミリヰギジヂビピウゥクスツヌフムユュルグズブヅプエェケセテネヘメレヱゲゼデベペオォコソトノホモヨョロヲゴゾドボポヴッン';
const roman = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789@*#-%$';
const hanzi = Array.from({length: 200}, (_, i) => String.fromCharCode(0x4E00 + i));
const hangul = Array.from({length: 200}, (_, i) => String.fromCharCode(0xAC00 + i));
const chars = [
katakana,
roman,
hanzi.join(''),
hangul.join('')
].join('');
let charsArray = chars.split('').filter(c => c.trim() !== '');
if (charsArray.length === 0) charsArray = ['A'];
let fontSize = 16;
let columns = [];
let drops = [];
const trailLength = 5;
const lineHeightMultiplier = 1.25;
function initialize() {
fontSize = Math.floor(window.innerWidth / 90);
fontSize = Math.min(Math.max(fontSize, 14), 24);
ctx.font = `${fontSize}px "MS Gothic", "AppleGothic", "Monaco", "Consolas", monospace`;
columns = [];
drops = [];
let x = 0;
while (x < canvas.width) {
const randomChar = charsArray[Math.floor(Math.random() * charsArray.length)];
const charWidth = ctx.measureText(randomChar).width;
const columnWidth = charWidth * 1.2;
if (x + columnWidth > canvas.width) break;
columns.push({
width: columnWidth,
x: x
});
drops.push({
y: -Math.random() * canvas.height/2,
speed: Math.random() * 0.5 + 0.5,
lastChar: '',
trail: []
});
x += columnWidth;
}
}
function resizeCanvas() {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
initialize();
}
resizeCanvas();
window.addEventListener('resize', resizeCanvas);
let lastFrame = performance.now();
const fpsInterval = 1000/60;
function draw() {
const now = performance.now();
const elapsed = now - lastFrame;
if (elapsed > fpsInterval) {
ctx.fillStyle = 'rgba(0, 0, 0, 0.09)';
ctx.fillRect(0, 0, canvas.width, canvas.height);
for (let i = 0; i < columns.length; i++) {
const column = columns[i];
const drop = drops[i];
// Update trail
drop.trail.unshift(charsArray[Math.floor(Math.random() * charsArray.length)]);
if (drop.trail.length > trailLength) {
drop.trail.pop();
}
// Column reset logic
if (Math.random() < 0.004 || drop.y * fontSize > canvas.height * 1.2) {
drop.y = -trailLength;
drop.speed = Math.random() * 0.5 + 0.5;
drop.trail = [];
}
// Draw characters
for (let j = 0; j < drop.trail.length; j++) {
const pos = drop.y - j;
if (pos < 0) continue;
const char = drop.trail[j];
const charWidth = ctx.measureText(char).width;
const xPos = column.x + (column.width - charWidth)/2;
const yPos = pos * fontSize * lineHeightMultiplier;
// Direct rendering without shadow effects
if (j === 0) {
ctx.fillStyle = `rgb(180, 255, 180)`; // Bright leading character
} else {
const fade = 180 - (j * 30);
ctx.fillStyle = `rgba(0, ${fade}, 0, ${1 - (j/trailLength)})`;
}
ctx.fillText(char, xPos, yPos);
}
// Update position
drop.y += drop.speed;
}
lastFrame = now - (elapsed % fpsInterval);
}
requestAnimationFrame(draw);
}
draw();
</script>
</body>
</html>