WEBLEB
Início
Editor
Entrar
Pro
Português
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Entrada de upload de arquivo com ícone SVG
429
alejandrokundrah
Abrir no Editor
Publique Seu Código
Recomendado
26 May 2025
Snake de 8 bits em desenvolvimento...
17 July 2025
Página de login do CoffeeShop com efeito de vidro e Tailwind
3 February 2025
recrutamento de força especial
HTML
Copy
CSS
Copy
.input-div { position: relative; width: 100px; height: 100px; border-radius: 50%; border: 2px solid rgb(1, 235, 252); display: flex; justify-content: center; align-items: center; overflow: hidden; box-shadow: 0px 0px 100px rgb(1, 235, 252) , inset 0px 0px 10px rgb(1, 235, 252),0px 0px 5px rgb(255, 255, 255); animation: flicker 2s linear infinite; } .icon { color: rgb(1, 235, 252); font-size: 2rem; cursor: pointer; animation: iconflicker 2s linear infinite; } .input { position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer !important; } @keyframes flicker { 0% { border: 2px solid rgb(1, 235, 252); box-shadow: 0px 0px 100px rgb(1, 235, 252) , inset 0px 0px 10px rgb(1, 235, 252),0px 0px 5px rgb(255, 255, 255); } 5% { border: none; box-shadow: none; } 10% { border: 2px solid rgb(1, 235, 252); box-shadow: 0px 0px 100px rgb(1, 235, 252) , inset 0px 0px 10px rgb(1, 235, 252),0px 0px 5px rgb(255, 255, 255); } 25% { border: none; box-shadow: none; } 30% { border: 2px solid rgb(1, 235, 252); box-shadow: 0px 0px 100px rgb(1, 235, 252) , inset 0px 0px 10px rgb(1, 235, 252),0px 0px 5px rgb(255, 255, 255); } 100% { border: 2px solid rgb(1, 235, 252); box-shadow: 0px 0px 100px rgb(1, 235, 252) , inset 0px 0px 10px rgb(1, 235, 252),0px 0px 5px rgb(255, 255, 255); } } @keyframes iconflicker { 0% { opacity: 1; } 5% { opacity: 0.2; } 10% { opacity: 1; } 25% { opacity: 0.2; } 30% { opacity: 1; } 100% { opacity: 1; } } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; margin: 0; background-color: #000000; /* Optional: for visibility */ }
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */