-
-
Save molizz/1b85b4f899d89b52f2fd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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