CSS Animation Generator

Home/Tools/Animation Generator

Create custom CSS keyframe animations with visual timeline editor.

No sign-up neededRuns in your browserProduction-ready CSS

Animation Preset

Timing

1s
0s

Behavior

Preview

Generated CSS
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

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