Created
February 6, 2015 14:25
-
-
Save AWaselnuk/a45ee0ee4ba9702ab793 to your computer and use it in GitHub Desktop.
Single element CSS spinner
This file contains hidden or 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
#spinner { | |
width: 150px;height: 150px; | |
-webkit-animation: sweep 1s infinite linear; | |
border-radius:75px; | |
border-bottom:5px solid #ccc; | |
} | |
@-webkit-keyframes sweep { to { -webkit-transform: rotate(360deg); } } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment