You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suppose one wants to have different animation for when element is entering threshold and different when exiting
Is there an easy way without resorting to javascript solution ?
The text was updated successfully, but these errors were encountered:
I think you'll need to use some extra javascript to achieve the effect. You try to use events and add a custom CSS class with leaving animation. You need to remember to remove this leaving CSS class after the animation is done, in order to not broke your animations when you'll play them again. You can add a transitionend to element that is being animated and clear the class in an event handler.
Suppose one wants to have different animation for when element is entering threshold and different when exiting
Is there an easy way without resorting to javascript solution ?
The text was updated successfully, but these errors were encountered: