DevToolsHub Logo

DevToolsHub

CSS Animation Generator

Visually design CSS animations with delay, duration, easing, and direction controls, and copy the generated CSS & keyframes.

Play State
Animation Preview

Generated CSS Code

.element {
  animation: fadeIn 1s ease-in-out 0s infinite normal both;
}

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