|
1 | | - body::after{ |
2 | | - z-index: 9999; |
3 | | - content: "JSO?? NO THIS CSS OVERLAY, TOUCHED BY FVSCyber"; |
4 | | - font-family: 'Courier New', Courier, monospace; |
5 | | - font-size: 1.5em; |
6 | | - display: flex; |
7 | | - color: #dbd9d9; |
8 | | - position: fixed; |
9 | | - top: 0; |
10 | | - left: 0; |
11 | | - width: 100%; |
12 | | - height: 100vh; |
13 | | - background-color: #0000009e; |
14 | | - backdrop-filter: blur(15px); |
15 | | - justify-content: center; |
16 | | - align-items: center; |
17 | | - } |
| 1 | + /* ===== Glitch Overlay + Center Text ===== */ |
| 2 | + |
| 3 | +/* Overlay noise + scanline */ |
| 4 | +body::after { |
| 5 | + content: ""; |
| 6 | + position: fixed; |
| 7 | + inset: 0; |
| 8 | + background: repeating-linear-gradient( |
| 9 | + to bottom, |
| 10 | + rgba(255,255,255,0.02) 0, |
| 11 | + rgba(255,255,255,0.02) 1px, |
| 12 | + transparent 1px, |
| 13 | + transparent 2px |
| 14 | + ), |
| 15 | + repeating-linear-gradient( |
| 16 | + to right, |
| 17 | + rgba(255,255,255,0.02) 0, |
| 18 | + rgba(255,255,255,0.02) 1px, |
| 19 | + transparent 1px, |
| 20 | + transparent 2px |
| 21 | + ); |
| 22 | + mix-blend-mode: overlay; |
| 23 | + animation: noiseMove 0.5s steps(2) infinite; |
| 24 | + z-index: 99998; |
| 25 | + pointer-events: none; |
| 26 | + background-color: #0000009e; |
| 27 | + backdrop-filter: blur(30px); |
| 28 | +} |
| 29 | + |
| 30 | +/* Glitch text */ |
| 31 | +body::before { |
| 32 | + display: flex; |
| 33 | + justify-content: center; |
| 34 | + align-items: center; |
| 35 | + content: "HACKED BY FVSCYBER"; |
| 36 | + position: fixed; |
| 37 | + top: 50%; |
| 38 | + left: 50%; |
| 39 | + transform: translate(-50%, -50%); |
| 40 | + font-family: monospace; |
| 41 | + font-size: 4vw; |
| 42 | + font-weight: bold; |
| 43 | + color: white; |
| 44 | + text-shadow: 2px 0 red, -2px 0 cyan; |
| 45 | + animation: glitchText 2s infinite; |
| 46 | + z-index: 99999; |
| 47 | + pointer-events: none; |
| 48 | + width: 100dvw; |
| 49 | + height: 100dvh; |
| 50 | + |
| 51 | +} |
| 52 | + |
| 53 | +/* Glitch distort overlay */ |
| 54 | +@keyframes noiseMove { |
| 55 | + 0%, 100% { background-position: 0 0, 0 0; } |
| 56 | + 50% { background-position: 5px 5px, -5px -5px; } |
| 57 | +} |
| 58 | + |
| 59 | +@keyframes glitchText { |
| 60 | + 0% { text-shadow: 2px 0 red, -2px 0 cyan; } |
| 61 | + 20% { text-shadow: -2px 0 red, 2px 0 cyan; transform: translate(-50%, -50%) skew(1deg); } |
| 62 | + 40% { text-shadow: 2px 0 blue, -2px 0 lime; transform: translate(-50%, -50%) skew(-1deg); } |
| 63 | + 60% { text-shadow: -2px 0 magenta, 2px 0 yellow; transform: translate(-50%, -50%) skew(2deg); } |
| 64 | + 80% { text-shadow: 2px 0 red, -2px 0 cyan; transform: translate(-50%, -50%) skew(-2deg); } |
| 65 | + 100% { text-shadow: 2px 0 red, -2px 0 cyan; transform: translate(-50%, -50%) skew(0deg); } |
| 66 | +} |
0 commit comments