Hello
when I choose an image to be animated and slide in from the left or the right, is there a way where I can modify the slide-in speed? Right now it seems to fast.
Thank you
Hi johncon!
Please add following code to Quick CSS and adjust as needed
.avia_transform .avia_start_delayed_animation.left-to-right.avia_animated_image {
-webkit-animation: avia-ltr 2.1s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275);
-moz-animation: avia-ltr 2.1s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275);
animation: avia-ltr 2.1s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); }
You should adjust 2.1s
Regards,
Yigit
Thank You!