hinge triggers immediately #1466
-
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
|
See #1453 |
Beta Was this translation helpful? Give feedback.
-
|
I think I deserve an answer: if "animate__animated" is not the trigger, what's its purpose? |
Beta Was this translation helpful? Give feedback.
-
|
.animated {
animation-duration: var(--animate-duration);
animation-fill-mode: both;
}If you don't want the animation to be triggered at page load, it's better to add both classes with js, not only one. You can also just set the CSS |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.

animate__animatedis just a helper, it doesn't "hold" the animation keyframe, it just gets some animation related properties, as you can see here:If you don't want the animation to be triggered at page load, it's better to add both classes with js, not only one. You can also just set the CSS
animationproperty yourself and not use the helper class