DevToolBoxGRATIS
Blog

CSS Animatie Generator

Maak CSS keyframe-animaties visueel met live preview.

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

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

Gratis CSS animatie generator

Maak CSS-animaties met realtime preview en code-export.

Tips

  • Gebruik ease-in-out voor vloeiende animaties
  • Houd animaties onder 300ms
  • Gebruik transform en opacity voor prestaties
  • forwards behoudt de eindstaat
  • Gebruik animation-delay om te spreiden

FAQ

Wat zijn CSS keyframe-animaties?
CSS keyframe-animaties definiëren tussenstappen met @keyframes regels.
Welke timing-functies?
ease, linear, ease-in, ease-out, ease-in-out en cubic-bezier.
Hoe herhalen?
Stel herhalingen in op "infinite".
Wat is fill-mode?
fill-mode bepaalt hoe stijlen worden toegepast voor en na de animatie.
Is het gratis?
Ja, volledig gratis.

Gerelateerde tools

𝕏 Twitterin LinkedIn

💬 User Feedback

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

Beoordeel deze tool

4.8 / 5 · 79 beoordelingen

Blijf op de hoogte

Ontvang wekelijkse dev-tips en nieuwe tools.

Geen spam. Altijd opzegbaar.

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.