Skip to content

Instantly share code, notes, and snippets.

@molizz
Forked from helloworld/keyframes.css
Last active August 29, 2015 14:19
Show Gist options
  • Save molizz/1b85b4f899d89b52f2fd to your computer and use it in GitHub Desktop.
Save molizz/1b85b4f899d89b52f2fd to your computer and use it in GitHub Desktop.
@keyframes takeoff {
0% {
bottom: -10%;
left: 0px;
-webkit-transform: scale(0.6) rotate(-90deg);
}
50% {
bottom: 50%;
left: 50%;
-webkit-transform: scale(0.6) translate(-50%, -50%)
}
100% {
bottom: -10%;
left: 80%;
-webkit-transform: scale(0.6) rotate(90deg) ;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment