Hey guys, how can I adjust the speed, in this case slow down the CSS animation that’s available in the layout builder.
Bottom to top, top to bottom, left to right, right to left, etc.
Thanks!
you will find the settings on shortcodes.css look for :
/*animation variations*/
f.e.:
.avia_transform .avia_start_delayed_animation.bottom-to-top {
-webkit-animation: avia-btt 0.8s 1 cubic-bezier(0.165, 0.840, 0.440, 1.000); /* Safari 4+ */
animation: avia-btt 0.8s 1 cubic-bezier(0.165, 0.840, 0.440, 1.000); /* IE 10+ */
opacity: 1;
}
Didn’t work. Thanks!
Looking to slow down the animation like we see here: https://couleecreative.com/
you see that this is only one example of /*animation variations*/
i see alot of animation on your site but not where you uses the enfold implemented one. I see some transfomings with matrix.
Where are your animations to style ?
And where is the enfold theme ? :lol
https://js-interactive.com/
by the way – very impressive !
well it is not as easy as to place it in quick css. on shortcodes.css replacement it has an effect.
perhaps you edit the keyframe too – it looks better – the distance of transformation is to short to see a faster animation.
f.e.
@-webkit-keyframes avia-ltr {
0% { -webkit-transform:translate(-50%,0); opacity: 0; }
100% { -webkit-transform:translate(0,0); opacity: 1; }
}
@keyframes avia-ltr {
0% { transform:translate(-50%,0); opacity: 0; }
100% { transform:translate(0,0); opacity: 1; }
}
see https://webers-testseite.de/elegant/animated-images/
PS: try to set the keyframes on quick css – i did not test it – if it works
Hi,
Please try @Guenni007’s suggestion. You may need to create your own keyframes and css animation.
Best regards,
Ismael