Create CSS keyframe animations visually
Animation Properties
Keyframes
Preview
CSS
@keyframes myAnimation {
0% {
transform: translateX(0);
opacity: 1;
}
100% {
transform: translateX(100px);
opacity: 1;
}
}
.element {
animation: myAnimation 1s ease 0s infinite normal none;
}Preset Animations