Skip to content

Instantly share code, notes, and snippets.

@RayPS
Last active July 2, 2016 20:46
Show Gist options
  • Save RayPS/6019e3561f69661f98b7 to your computer and use it in GitHub Desktop.
Save RayPS/6019e3561f69661f98b7 to your computer and use it in GitHub Desktop.
Simple css spinner
@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