Last active
January 4, 2016 06:58
-
-
Save fastdivision/8585066 to your computer and use it in GitHub Desktop.
ng-view / ui-view Fade Animation with ng-animate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ui-view] | |
position absolute | |
.fade | |
fadeSpeed = 333ms | |
-webkit-transition all fadeSpeed ease-in-out | |
-moz-transition all fadeSpeed ease-in-out | |
-o-transition all fadeSpeed ease-in-out | |
transition all fadeSpeed ease-in-out | |
opacity 1 | |
&.ng-enter | |
opacity 0 | |
&.ng-leave.ng-leave-active | |
opacity 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div ui-view class="fade" autoscroll="false"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment