Skip to content

Instantly share code, notes, and snippets.

@andrewliebchen
Created December 24, 2015 16:02
Show Gist options
  • Save andrewliebchen/6181ec98d9c172442e14 to your computer and use it in GitHub Desktop.
Save andrewliebchen/6181ec98d9c172442e14 to your computer and use it in GitHub Desktop.
Pop animation
@keyframes pop {
0% {
opacity: 0;
transform: scale(0.75);
}
100% {
opacity: 1;
transform: scale(1);
}
}
.new {
animation: pop 0.2s cubic-bezier(0.680, -0.550, 0.265, 1.550) forwards;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment