WEBLEB
होम
संपादक
लॉग इन करें
Pro
हिंदी
English
Français
Español
Português
Deutsch
Italiano
हिंदी
इलेक्ट्रिक स्टॉर्म
45
soundasart
संपादक में खोलें
अपना कोड प्रकाशित करें
अनुशंसित
9 December 2025
इलेक्ट्रिक फ्रेम नीला
5 December 2025
सीएसएस नीला इलेक्ट्रिक बॉर्डर प्रभाव
9 December 2025
लाल इलेक्ट्रिक फ्रेम
HTML
Copy
CSS
Copy
* { margin: 0; padding: 0; box-sizing: border-box; } @keyframes scanline { 0% { transform: translateY(-100%); } 100% { transform: translateY(100vh); } } body{ background-repeat: no-repeat; background: url('/thumb') 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; } @keyframes growFast { 0% { transform: scale(0.01); } 90% { transform: scale(0.01); } 100% { transform: scale(1); } } /* Background color and style */ body { background-repeat: no-repeat; background: url('/thumb') 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: fixed; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; top:10%; left:10%; 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(0, 200, 255, 0.3), transparent); animation: scanline 2.56s linear infinite; pointer-events: none; }
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */