oont-contents/plugins/elementor/assets/lib/animations/styles/zoomIn.css
2025-02-08 15:10:23 +01:00

12 lines
145 B
CSS

@keyframes zoomIn {
from {
opacity: 0;
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
.zoomIn {
animation-name: zoomIn;
}