DevToolBoxGRÁTIS
Blog

Gerador de Animacoes CSS

Crie animacoes CSS keyframe visualmente com preview ao vivo.

1s
0s
A
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.animated-element {
  animation: bounce 1s ease 0s infinite normal none;
}

Gerador de animacoes CSS gratuito

Crie animacoes CSS com preview em tempo real e exportacao de codigo.

Dicas

  • Use ease-in-out para animacoes fluidas
  • Mantenha animacoes abaixo de 300ms
  • Use transform e opacity para desempenho
  • forwards mantem o estado final
  • Use animation-delay para escalonar

FAQ

O que sao animacoes CSS keyframe?
Permitem definir etapas intermediarias com regras @keyframes.
Quais funcoes de timing?
ease, linear, ease-in, ease-out, ease-in-out e cubic-bezier.
Como repetir?
Defina as iteracoes como "infinite".
O que e fill-mode?
fill-mode determina como os estilos sao aplicados antes e depois da animacao.
E gratuito?
Sim, completamente gratuito.

Ferramentas relacionadas

𝕏 Twitterin LinkedIn

💬 User Feedback

Have suggestions or found a bug? Leave a message and we'll get back to you.
0/2000

Avalie esta ferramenta

4.8 / 5 · 79 avaliações

Fique atualizado

Receba dicas de dev e novos ferramentas semanalmente.

Sem spam. Cancele a qualquer momento.

Enjoy these free tools?

Buy Me a Coffee

How to Use

  1. Choose an animation type or customize keyframes
  2. Adjust timing, duration, and easing
  3. Preview the animation in real-time
  4. Copy the generated CSS code

Common Use Cases

  • Creating hover effects
  • Building loading animations
  • Adding entrance/exit animations
  • Prototyping UI interactions

Frequently Asked Questions

What animation types are available?
Fade, slide, bounce, rotate, scale, flip, pulse, shake, and custom keyframe animations.
Can I customize the timing?
Yes. Adjust duration, delay, iteration count, direction, fill mode, and timing function (easing).
Will it work in all browsers?
Generated CSS includes vendor prefixes for maximum browser compatibility.