WEBLEB
Accueil
Éditeur
Connexion
Pro
Français
English
Français
Español
Português
Deutsch
Italiano
हिंदी
HTML
CSS
JS
* { margin: 0; padding: 0; box-sizing: border-box; } /* Background color and style */ body { background-repeat: no-repeat; background-position: center center; background-size: cover; background-attachment: fixed; background-color: black; display: flex; align-items: center; justify-content: center; height: 100vh; width: 100vw; overflow: hidden; } /* Animation container */ .container { position: absolute; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; top:0; left:0; overflow: hidden; background: transparent; } @keyframes scanline { 0% { transform: translateY(-100%); } 100% { transform: translateY(100vh); } } .scanline { position: absolute; width: 100%; height: 2px; background: linear-gradient(transparent, rgba(200, 50, 200, 0.3), transparent); animation: scanline 3.2s linear infinite; pointer-events: none; } body, html { background-color: #000; margin: 0px; padding: 0px; overflow: hidden; }
/* Replace with your JS Code (Leave empty if not needed) */
Validating your code, please wait...
HTML
CSS
JS
* { margin: 0; padding: 0; box-sizing: border-box; } /* Background color and style */ body { background-repeat: no-repeat; background-position: center center; background-size: cover; background-attachment: fixed; background-color: black; display: flex; align-items: center; justify-content: center; height: 100vh; width: 100vw; overflow: hidden; } /* Animation container */ .container { position: absolute; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; top:0; left:0; overflow: hidden; background: transparent; } @keyframes scanline { 0% { transform: translateY(-100%); } 100% { transform: translateY(100vh); } } .scanline { position: absolute; width: 100%; height: 2px; background: linear-gradient(transparent, rgba(200, 50, 200, 0.3), transparent); animation: scanline 3.2s linear infinite; pointer-events: none; } body, html { background-color: #000; margin: 0px; padding: 0px; overflow: hidden; }
/* Replace with your JS Code (Leave empty if not needed) */