Last active
June 23, 2017 06:21
-
-
Save shramee/349091b6cb2dce9f9065611f951bd2da to your computer and use it in GitHub Desktop.
Pure css animated spinning loader
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
/* SCSS */ | |
@keyframes loader-anim { | |
0% { transform: rotate(0deg); } | |
100% { transform: rotate(360deg); } | |
} | |
.loader { | |
width: 100px; | |
height: 100px; | |
position: relative; | |
animation: loader-anim 1s linear infinite; | |
border-radius: 999px; | |
border: 25px solid #0ad; | |
border-bottom-color: transparent; | |
margin: 25px auto; | |
& + h2, & + h3 { | |
margin: 25px; | |
text-align: center; | |
color: #0ad; | |
} | |
} | |
/* CSS */ | |
@keyframes loader-anim { | |
0% { transform: rotate(0deg); } | |
100% { transform: rotate(360deg); } | |
} | |
.loader { | |
width: 100px; | |
height: 100px; | |
position: relative; | |
animation: loader-anim 1s linear infinite; | |
border-radius: 999px; | |
border: 25px solid #0ad; | |
border-bottom-color: transparent; | |
margin: 25px auto; | |
} | |
.loader + h2, | |
.loader + h3 { | |
margin: 25px; | |
text-align: center; | |
color: #0ad; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
HTML usage