CSS Animation Generator

Create CSS keyframe animations with visual controls. Preview and copy code instantly.

Anim
/* CSS Animation */
.anim {
  animation: fadeIn 1s infinite;
}

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