← Back to Dev Tools

Animation Generator

Create CSS animations and keyframes with visual editor

Configuration

Preview

Generated CSS

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.animated-element {
  animation: bounce 1s ease 0s infinite;
}