Add Matrix effect: implement matrix animation with toggle functionality and responsive canvas

This commit is contained in:
CodeDevMLH
2026-02-26 02:53:42 +01:00
parent 2bbf13c044
commit b008221cf4
2 changed files with 19 additions and 18 deletions

View File

@@ -0,0 +1,11 @@
.matrix-container {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
pointer-events: none;
z-index: 1000;
overflow: hidden;
contain: layout paint;
}