Skip to content

hinge triggers immediately #1466

Answered by eltonmesquita
Cyberchicken asked this question in Q&A
Discussion options

You must be logged in to vote

animate__animated is just a helper, it doesn't "hold" the animation keyframe, it just gets some animation related properties, as you can see here:

.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 animation property yourself and not use the helper class

Replies: 4 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@Cyberchicken
Comment options

Answer selected by Cyberchicken
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #1462 on February 01, 2022 10:43.