WEBLEB
Início
Editor
Entrar
Pro
Português
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Código do editor HTML em tela cheia
17
1760992
Abrir no Editor
Video
Publique Seu Código
0
Recomendado
1 March 2025
Modelo HTML CSS para site de desenvolvedor
10 December 2025
Demonstração do jogo Flappy Bird - HTML Canvas JavaScript
3 March 2025
Cilindros Grade Fundo 3D
HTML
Copy
HTML Editor Full Screen
Toggle Full Screen
CSS
Copy
/* Replace with your CSS Code (Leave empty if not needed) */body { display: flex; justify-content: center; align-items: center; background: #100720; margin-top: 100px; } button { width: 165px; height: 62px; cursor: pointer; color: #fff; font-size: 17px; border-radius: 1rem; border: none; position: relative; background: #100720; transition: 0.1s; } button::after { content: ""; width: 90%; height: 90%; background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(255, 94, 247, 1)17.8%, rgba(2, 245, 255, 1)100.2%); filter: blur(15px); z-index: -1; position: absolute; left: 0; top: 0; } button:active { transform: scale(0.9)rotate(3deg); background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(255, 94, 247, 1)17.8%, rgba(2, 245, 255, 1)100.2%); transition: 0.5s; }
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */