Skip to content

Instantly share code, notes, and snippets.

@eperedo
Created July 10, 2014 04:58
Show Gist options
  • Save eperedo/96aa5bb203cf8a58cf54 to your computer and use it in GitHub Desktop.
Save eperedo/96aa5bb203cf8a58cf54 to your computer and use it in GitHub Desktop.
row animated
.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