-
-
Save durango/6188887 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
<div class="fade" ng-class="{in:someData.length}"> | |
I'm not visible until someData is there! | |
</div> |
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
.fade { | |
opacity: 0; | |
-webkit-transition: opacity 0.25s ease-in; | |
-moz-transition: opacity 0.25s ease-in; | |
-o-transition: opacity 0.25s ease-in; | |
-ms-transition: opacity 0.25s ease-in; | |
transition: opacity 0.25s ease-in; | |
} | |
.fade.in{ | |
opacity: 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment