-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (51 loc) · 2.2 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
# Matrix-Easy
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Matrix</title>
</head>
<body style="margin: 0; background: black; overflow: hidden;">
<canvas id='matrix'> </canvas>
</body>
</html>
<script>
// Объявляем переменную, контекст, определяем высоту и ширину
const C = document.getElementById("matrix"),
ctx = C.getContext("2d"),
W = (C.width = window.innerWidth),
H = (C.height = window.innerHeight);
// Создаем массив с символами, которые будут визуализироваться
const mass = "チャンネル に登録して、 電報チャンネル の記事を高く評価する",
webmatrix = mass.split("");
//Задаем размер шрифта, считаем колонки и создаем пустой массив
let font = 14,
col = W / font,
mas = [];
//Заполняем массив
for (let i = 0; i < col; i++) mas[i] = 1;
function draw() {
//Цвет фона, который делает эффект затухания символов
ctx.fillStyle = "rgba(0,0,0,0.05)";
ctx.fillRect(0, 0, W, H);
//Цвет шрифта
ctx.fillStyle = "#0f0";
//Свойства шрифта
ctx.font = font + "px arial";
//Рисуем символы
for (let i = 0; i < mas.length; i++) {
//Случайный набор символов
let text = webmatrix[Math.floor(Math.random() * webmatrix.length)];
//Отрисовка символов со смещением
ctx.fillText(text, i * font, mas[i] * font);
//Разница отрисовки колонок
if (mas[i] * font > H && Math.random() > 0.975) mas[i] = 0;
//Увеличиваем значение
mas[i]++;
}
}
//Запускаем функцию рисования через каждые 47 миллисекунды
setInterval(draw, 47);
//При изменении размеров окна происходит обновление страницы
window.addEventListener("resize", () => location.reload());
</script>