Created
July 10, 2014 04:58
-
-
Save eperedo/96aa5bb203cf8a58cf54 to your computer and use it in GitHub Desktop.
row animated
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
.row-item { | |
-webkit-transition: color 0.6s, background-color 0.3s ease-out 1s; | |
-moz-transition: color 0.6s, background-color 0.3s ease-out 1s; | |
-ms-transition: color 0.6s, background-color 0.3s ease-out 1s; | |
transition: color 0.1s, background-color 0.8s ease-out 1s; | |
} | |
.row-item.ng-enter { | |
background-color: #FFF1CC; | |
-webkit-animation: bounceInRight 1s; | |
-moz-animation: bounceInRight 1s; | |
-ms-animation: bounceInRight 1s; | |
animation: bounceInRight 1s; | |
} | |
.row-item.ng-leave { | |
-webkit-animation: bounceOutRight 1s; | |
-moz-animation: bounceOutRight 1s; | |
-ms-animation: bounceOutRight 1s; | |
animation: bounceOutRight 1s; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment