CSS Animation Generator

Build @keyframe animations visually and copy the CSS

Presets

Controls

800ms
0ms

Live Preview

Fade

@keyframes Editor

CSS Output
@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;
}
Feedback