Skip to content

Instantly share code, notes, and snippets.

@ScarletPonytail
Created June 27, 2019 14:30
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 ScarletPonytail/a38f4f1f9d4d84ef504f1c94b888ccc7 to your computer and use it in GitHub Desktop.
Save ScarletPonytail/a38f4f1f9d4d84ef504f1c94b888ccc7 to your computer and use it in GitHub Desktop.
animation-name: zoom;
animation-fill-mode: forwards;
animation-duration: 10s;
animation-timing-function: ease-in-out;
@keyframes zoom {
0% {
transform: scale(1);
}
100% {
transform: scale(1.2);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment