From 34a9712c961ba24cae8afd8f24dbd9b2e0183701 Mon Sep 17 00:00:00 2001 From: Maksim Roosevelt <55083577+MRoose@users.noreply.github.com> Date: Fri, 10 Feb 2023 13:09:17 +0300 Subject: [PATCH 1/3] Create index.html --- index.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..dde31f8 --- /dev/null +++ b/index.html @@ -0,0 +1,12 @@ + + + + MRoose + + + + + + + + From faa9c34208f66e38080f3d3c8a5bafd69b571067 Mon Sep 17 00:00:00 2001 From: Maksim Roosevelt <55083577+MRoose@users.noreply.github.com> Date: Fri, 10 Feb 2023 13:10:16 +0300 Subject: [PATCH 2/3] Create matrix.js --- js/matrix.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 js/matrix.js diff --git a/js/matrix.js b/js/matrix.js new file mode 100644 index 0000000..9ac4044 --- /dev/null +++ b/js/matrix.js @@ -0,0 +1,21 @@ +let q = document.getElementById('q'); +q.width = window.screen.width; +q.height = window.screen.height; + +let p = Array(256).join(1).split(''); +let c = q.getContext('2d'); + +setInterval(() => { + + c.fillStyle = 'rgba(0,0,0,0.05)'; + c.fillRect(0, 0, q.width, q.height); + c.fillStyle = 'rgba(0,255,0,1)'; + + p = p + .map((v, i) => { + r = Math.random(); + c.fillText(String.fromCharCode(Math.floor(2720 + r * 33)), i * 10, v); + v += 10; + return v > 768 + r * 1e4 ? 0 : v + }) +}, 33); From 331aabc5f41fc7769735336a621c93d00100dee3 Mon Sep 17 00:00:00 2001 From: Maksim Roosevelt <55083577+MRoose@users.noreply.github.com> Date: Fri, 10 Feb 2023 13:11:10 +0300 Subject: [PATCH 3/3] Delete README.md --- README.md | 1 - 1 file changed, 1 deletion(-) delete mode 100644 README.md diff --git a/README.md b/README.md deleted file mode 100644 index 7b6fa12..0000000 --- a/README.md +++ /dev/null @@ -1 +0,0 @@ -# mroose.github.io \ No newline at end of file