Last active
July 2, 2016 20:46
-
-
Save RayPS/6019e3561f69661f98b7 to your computer and use it in GitHub Desktop.
Simple css spinner
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) | |
.spinner | |
width: 50px | |
height: 50px | |
border-radius: 50% | |
border: 6px solid #51A7F7 | |
border-left-color: transparent //or smaller gap-> border-left-style: dashed | |
display: inline-block | |
animation: spin 1000ms infinite linear |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment