Skip to content

Instantly share code, notes, and snippets.

@johnnyelwailer
Created October 17, 2011 17:44
Show Gist options
  • Save johnnyelwailer/1293236 to your computer and use it in GitHub Desktop.
Save johnnyelwailer/1293236 to your computer and use it in GitHub Desktop.
css fluid item adding
@-webkit-keyframes ani-insert {
0% {
opacity: 0;
-webkit-transform: translate(0px,-30px);
width: 0;
}
10% {
opacity: 0;
width: 20px;
-webkit-transform: translate(0px,-30px);
}
30% {
-webkit-transform: translate(0px,0px);
}
100% {
opacity: 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment