CSS Animation Generator
Build CSS keyframe animations visually — choose a preset, tweak timing and duration, copy the CSS
cssanimationkeyframetransitiongenerator
Duration0.8s
Delay0s
A
CSS
@keyframes my-animation {
0% { opacity: 0; }
100% { opacity: 1; }
}
.my-animation {
animation: my-animation 0.8s ease 0s infinite normal none;
}