Animation Generator
Generate CSS keyframe animations. Create bounce, fade, slide, and custom animations.
Controls
CSS Code
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
.animated-element {
animation: bounce 1s ease infinite normal;
}