CSS Animation Generator
Build CSS keyframe animations with presets and live preview. Customize duration, timing, iterations, and more.
Processed locally in your browser
Element
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.animated-element {
animation: fadeIn 1s ease 0s 1 normal forwards;
}