Loading...
Build CSS animations online for free. Create keyframe animations visually. Export CSS code.
Create complex CSS animations visually
@keyframes myAnimation {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
.animated-element {
animation: myAnimation 2s ease infinite;
}Create animation steps at different percentages
Define CSS properties for each keyframe
Set duration, timing function, and iterations
Get complete animation code with @keyframes
Create animation steps at different percentages
Define CSS properties for each keyframe
Set duration, timing function, and iterations
Get complete animation code with @keyframes
Keyframes define the styles at specific points during the animation sequence.
It controls animation pacing - ease, linear, ease-in, ease-out, or ease-in-out.
Yes, set iteration-count to infinite for continuous animations.
Animate transform and opacity for best performance. Avoid animating layout properties.