Created
March 1, 2017 05:15
-
-
Save pobing/87b17fc8e86298e7255a233848a8887b to your computer and use it in GitHub Desktop.
animate-spin
This file contains 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 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