Tool #400 Special Edition

CSS Animation Generator

Visually design CSS keyframe animations and generate code instantly.

Preview

Start
Animate

Generated CSS

@keyframes my-animation {
  0% {
    transform: translate(0px, 0px) scale(1) rotate(0deg);
    opacity: 1;
    background-color: #3b82f6;
  }
  100% {
    transform: translate(100px, 0px) scale(1.2) rotate(45deg);
    opacity: 1;
    background-color: #ec4899;
  }
}

.animated-element {
  animation: my-animation 2s ease-in-out 0s infinite normal forwards;
}

Animation Settings

2s

Start (0%)0%

0, 0
1
0°
1
#3b82f6

End (100%)100%

100, 0
1.2
45°
1
#ec4899