Files
rm2.pagedev.pl/wp-content/plugins/elementor/assets/lib/animations/styles/slideInUp.css
2026-03-24 00:31:47 +01:00

13 lines
184 B
CSS

@keyframes slideInUp {
from {
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
animation-name: slideInUp;
}