Animation Settings
Keyframes
%
%
Preview
Animated
Generated CSS, HTML & Tailwind
@keyframes slideIn {
0% {
transform: translateX(0);
}
100% {
transform: translateX(100px);
}
}
.animated-element {
animation: slideIn 1s ease 1 normal;
}