Skip to content

Instantly share code, notes, and snippets.

@rhostem
Last active November 20, 2016 14:11
Show Gist options
  • Save rhostem/87146e7f4211785a8d1b2e339cf09a9b to your computer and use it in GitHub Desktop.
Save rhostem/87146e7f4211785a8d1b2e339cf09a9b to your computer and use it in GitHub Desktop.
animation-spin.css - 360도 회전 애니메이션
@keyframes spin {
0% { transform: rotate(0); }
100% { transform: rotate(360deg); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment