Created
March 18, 2015 21:53
-
-
Save theotherzach/fff26e5c57db8756af0a to your computer and use it in GitHub Desktop.
This file contains hidden or 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].ng-enter, [ui-view].ng-leave { | |
-webkit-transition-property: opacity; | |
-moz-transition-property: opacity; | |
-o-transition-property: opacity; | |
transition-property: opacity; | |
-webkit-transition-duration: 0.5s; | |
-moz-transition-duration: 0.5s; | |
-o-transition-duration: 0.5s; | |
transition-duration: 0.5s; | |
top: 0px; | |
left: 0px; | |
opacity: 0; | |
} | |
[ui-view].ng-enter { | |
opacity: 0; | |
} | |
[ui-view].ng-enter-active { | |
opacity: 1; | |
} | |
[ui-view].ng-leave { | |
-webkit-transition-property: opacity; | |
-moz-transition-property: opacity; | |
-o-transition-property: opacity; | |
transition-property: opacity; | |
-webkit-transition-duration: 0.5s; | |
-moz-transition-duration: 0.5s; | |
-o-transition-duration: 0.5s; | |
transition-duration: 0.5s; | |
top: 0px; | |
left: 0px; | |
opacity: 1; | |
} | |
[ui-view].ng-leave-active { | |
opacity: 0; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment