Created
December 5, 2013 06:30
-
-
Save freakdesign/7801040 to your computer and use it in GitHub Desktop.
Lightweight CSS3 loading animation
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
.loading { | |
border: .25em solid rgba(0, 0, 0, .1); | |
border-top: .25em solid rgba(255, 0, 0, .5); | |
border-radius: 100%; | |
height: 1em; | |
width: 1em; | |
animation: rot .5s infinite linear; | |
} | |
@keyframes rot { | |
from {transform: rotate(0deg);} | |
to {transform: rotate(359deg);} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Super cool, thanks