Created
April 29, 2015 21:25
-
-
Save inh3/21264df2b53dd0415fbe to your computer and use it in GitHub Desktop.
Angular.js Animation
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
.animated-class.ng-hide-add.ng-hide-add-active, | |
.animated-class.ng-hide-remove.ng-hide-remove-active { | |
transition: height 1s linear; | |
-webkit-transition: height 1s linear; | |
-moz-transition: height 1s linear; | |
-o-transition: height 1s linear; | |
overflow: hidden; | |
} | |
.animated-class.ng-hide { | |
height: 0px; | |
} | |
.animated-class { | |
height: 200px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment