WEBLEB
Inicio
Editora de código
Iniciar sesión
Pro
Español
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Entrada de carga de archivos con icono SVG
251
alejandrokundrah
Abrir en el editor
Publica tu código
Recomendado
24 August 2025
Blog de tecnología: Plantilla HTML de tecnología y software
16 June 2025
Un código de daniel_pindou_7
27 November 2024
Página de inicio - Modelo IA
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) */