Lara Gossan

CONTEÚDO ACIMA DA MÉDIA

APRENDA COMIGO ↓

// Criar o botãoconst botao = document.createElement("button");botao.innerText = "Clique aqui";botao.className = "meu-botao";document.body.appendChild(botao);const style = document.createElement("style");style.innerHTML = `.meu-botao { background: linear-gradient(270deg, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #FCAF45); background-size: 400% 400%; animation: gradientMove 6s ease infinite; border: none; color: white; padding: 12px 24px; border-radius: 8px; cursor: pointer; position: relative; overflow: hidden; font-weight: bold; transition: transform 0.2s ease, box-shadow 0.2s ease;}@keyframes gradientMove { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; }}.meu-botao::before { content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%; background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.5), transparent ); transform: skewX(-20deg); animation: brilho 3s infinite;}@keyframes brilho { 0% { left: -75%; } 100% { left: 125%; }}.meu-botao:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(0,0,0,0.3);}`;document.head.appendChild(style);

Desenvolvido por Vivex Gestão

2026 © Todos os direitos reservados