Build CSS keyframe animations visually. Adjust timing, add keyframe stops, preview live, copy the CSS.
Presets
Animation Properties
Live Preview
animation: 600ms ease-out 0ms 1 normal both fadeIn
CSS Output
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.animated-element {
animation-name: fadeIn;
animation-duration: 600ms;
animation-timing-function: ease-out;
animation-delay: 0ms;
animation-iteration-count: 1;
animation-direction: normal;
animation-fill-mode: both;
}Keyframes
2 stopsCommon Properties