Skip to content

Instantly share code, notes, and snippets.

@theotherzach
Created March 18, 2015 21:53
Show Gist options
  • Save theotherzach/fff26e5c57db8756af0a to your computer and use it in GitHub Desktop.
Save theotherzach/fff26e5c57db8756af0a to your computer and use it in GitHub Desktop.
[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