CSS Animation Generator

Build @keyframe animations visually and copy production-ready CSS

Live Preview Fade In
Fade In
800ms🔁 infinitealternate

Presets

Controls

800ms
0ms

@keyframes Editor

Edit the keyframes directly — the preview updates live.

Generated CSS
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.element {
  animation-name: fadeIn;
  animation-duration: 800ms;
  animation-delay: 0ms;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: none;
  animation-play-state: running;
}