Free online CSS animation generator. Design keyframe animations with a visual timeline editor and export CSS code.
@keyframes myAnimation {
0% {
opacity: 0;
transform: translateY(-20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.animated {
animation: myAnimation 1s ease 0s 1 normal none;
}