Created
May 15, 2025 10:27
-
-
Save EleotleCram/c3aad791c5dff466cbfc38efa23b854d to your computer and use it in GitHub Desktop.
Amiga Scanline Vibes (Youtube, Twitch, etc.)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Paste in browser console | |
(() => { | |
let old = document.getElementById('scanline-overlay'); | |
if (old) old.remove(); | |
document.body.appendChild(Object.assign(document.createElement('div'), { | |
id: 'scanline-overlay', | |
style: 'position:fixed;top:0;left:0;width:100vw;height:100vh;pointer-events:none;z-index:999999;background-image:repeating-linear-gradient(to bottom, rgba(0,0,0,0.3) 0px, rgba(0,0,0,0.3) 2px, transparent 2px, transparent 4px);' | |
})); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment