Skip to content

Instantly share code, notes, and snippets.

@pobing
Created March 1, 2017 05:15
Show Gist options
  • Save pobing/87b17fc8e86298e7255a233848a8887b to your computer and use it in GitHub Desktop.
Save pobing/87b17fc8e86298e7255a233848a8887b to your computer and use it in GitHub Desktop.
animate-spin
@keyframes spin {
0% {
transform:rotate(0deg);
}
100% {
transform:rotate(360deg);
}
}
.animate-spin {
-webkit-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
display: inline-block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment