We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems like animation won't run when i use animate-enter attribute. Something like this
<div class="card card-fade" animate-enter="fade" animate-duration="300ms" animate-delay="1000ms"> <p class="">Using ngAnimate style classes</p> </div>
Here is the example,
https://jsfiddle.net/5711sapx/
The text was updated successfully, but these errors were encountered:
I got it to work by changing it to "animate" instead of "animate-enter".
<div class="card card-fade" animate="fade" animate-duration="300ms" animate-delay="1000ms"> <p class="">Using ngAnimate style classes</p> </div>
Sorry, something went wrong.
No branches or pull requests
It seems like animation won't run when i use animate-enter attribute. Something like this
Here is the example,
https://jsfiddle.net/5711sapx/
The text was updated successfully, but these errors were encountered: