Skip to content

Instantly share code, notes, and snippets.

@samselikoff
Last active October 19, 2015 20:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samselikoff/794539e66baa4bfa8872 to your computer and use it in GitHub Desktop.
Save samselikoff/794539e66baa4bfa8872 to your computer and use it in GitHub Desktop.
@keyframes slideUp {
0% {
transform: translateY(100vh);
}
100% {
transform: translateY(0);
}
}
use (make sure you have autoprefixr):
.your-class {
animation: slideUp 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment