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
I am using animate.css. I have following styles for animating a div with ng-hide.
.slide-down.ng-hide-remove { -webkit-animation: fadeInDown 0.5s; -moz-animation: fadeInDown 0.5s; -o-animation: fadeInDown 0.5s; animation: fadeInDown 0.5s; } .slide-down.ng-hide-add { -webkit-animation: fadeOutUp 0.5s; -moz-animation: fadeOutUp 0.5s; -o-animation: fadeOutUp 0.5s; animation: fadeOutUp 0.5s; }
Unlike in chrome, .slide-down.ng-hide-add does not work in firefox while .slide-down.ng-hide-remove works fine.
.slide-down.ng-hide-add
.slide-down.ng-hide-remove
_You can see it here._
Is there anything I am missing to make it work?
I am using angularjs 1.3.9 and firefox 35.
angularjs 1.3.9
firefox 35
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am using animate.css. I have following styles for animating a div with ng-hide.
Unlike in chrome,
.slide-down.ng-hide-add
does not work in firefox while.slide-down.ng-hide-remove
works fine._You can see it here._
Is there anything I am missing to make it work?
Update
I am using
angularjs 1.3.9
andfirefox 35
.The text was updated successfully, but these errors were encountered: