Animate.css: Configuring effect

Created on 29 Dec 2017  路  2Comments  路  Source: animate-css/animate.css

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.

Most helpful comment

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.

All 2 comments

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 !!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

ivalsaraj picture ivalsaraj  路  3Comments

eltonmesquita picture eltonmesquita  路  5Comments

kevtan picture kevtan  路  4Comments

nzamosenchuk picture nzamosenchuk  路  4Comments

marcobiedermann picture marcobiedermann  路  3Comments