Skip to content

Instantly share code, notes, and snippets.

@elomatreb
Created November 24, 2017 03:03
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 elomatreb/d8bdcd731225fa25345c6cd03614d19f to your computer and use it in GitHub Desktop.
Save elomatreb/d8bdcd731225fa25345c6cd03614d19f to your computer and use it in GitHub Desktop.
@keyframes lol {
0% {
opacity: 0;
transform: rotate(-1440deg) scale(0);
}
100% {
opacity: 1;
transform: rotate(0deg) scale(1);
}
}
.status {
animation: lol .75s ease-in-out;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment