R
Rajesh Patra

Animation / Keyframes Generator

Design CSS animations visually — tune keyframes, timing → copy CSS & Tailwind

Animation Settings

Keyframes

0%25%50%75%100%
0%translateY(20px) opacity:0
100%

Edit Keyframe

0%
Background Color
#6366f1

Live Preview

CSS
Keyframe stops
600ms total
Duration
600ms
Keyframes
2
Iterations
1
Fill Mode
forwards

Generated CSS

@keyframes myAnimation {
  0% {
    transform: translateY(20px);
    opacity: 0;
    background-color: #6366f1;
  }
  100% {
    background-color: #6366f1;
  }
}

.animated-element {
  animation: myAnimation 600ms ease-out 0ms 1 normal forwards;
}

Tailwind Class

[animation:myAnimation 600ms ease-out 0ms 1 normal forwards]

Add the @keyframes block to your global CSS or tailwind.config.jstheme.extend.keyframes.