Hi, I'm a beginner programmer and I'd appreciate any feedback please.
How can I make the fadeInUp effect slower? I'm trying to make it delay a little. I looked at the code in animate.css, am I supposed to edit the parameters for translate3d?
Thanks for making such a cool library.
You don't need to touch any code from animate.css. Just override the element's animation-duration with the value you need on your own CSS.
Eg.:
.my-animated-element {
animation-duration: 4s;
}
Just make sure your code comes after animate.css code.
Thank you @eltonmesquita !!
Most helpful comment
You don't need to touch any code from animate.css. Just override the element's
animation-durationwith the value you need on your own CSS.Eg.:
Just make sure your code comes after animate.css code.