Generador de Efectos CSS

Explora, prueba y exporta efectos CSS modernos

.btn-ripple { position: relative; overflow: hidden; background: #667eea; color: white; border: none; padding: 12px 24px; border-radius: 5px; cursor: pointer; font-size: 1em; transition: background 0.3s; } .btn-ripple:hover { background: #5a67d8; } .ripple { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.7); transform: scale(0); animation: ripple-animation 0.6s linear; } @keyframes ripple-animation { to { transform: scale(4); opacity: 0; } }