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
253
alejandrokundrah
Abrir no Editor
Publique Seu Código
Recomendado
13 June 2025
Um Código de Metehan
28 June 2025
Barra de navegação do site HTML e seção Hero
25 July 2025
Plataforma de Negociação de Mineração: Negocie Metais e Minerais
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) */