Created
May 27, 2013 03:27
-
-
Save shane-edmonds/5655039 to your computer and use it in GitHub Desktop.
Android style "Holo" loader with Pure CSS
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
/* | |
<div class="loading"> | |
<div class="outer"></div> | |
<div class="inner"></div> | |
</div> | |
*/ | |
/* Loading indicator */ | |
.loading { | |
position: relative; | |
width: 16px; /* diameter */ | |
height: 16px; /* diameter */ | |
} | |
.outer, .inner, .loading:after { | |
position: absolute; | |
left: 0; | |
top: 0; | |
right: 0; | |
bottom: 0; | |
} | |
/* Mask */ | |
.loading:after { | |
content:" "; | |
margin: 10%; /* stroke width */ | |
border-radius: 100%; | |
background: white; /* container background */ | |
} | |
/* Spinning gradients */ | |
.outer, .inner { | |
animation-duration: 5s; /* speed */ | |
-webkit-animation-duration: 5s; /* speed */ | |
animation-iteration-count: infinite; | |
-webkit-animation-iteration-count: infinite; | |
animation-timing-function: linear; | |
-webkit-animation-timing-function: linear; | |
} | |
.outer { | |
animation-name: rotate-outer; | |
-webkit-animation-name: rotate-outer; | |
} | |
.inner { | |
animation-name: rotate-inner; | |
-webkit-animation-name: rotate-inner; | |
} | |
/* Halfs */ | |
.outer:before, .inner:before, .outer:after, .inner:after { | |
position: absolute; | |
top: 0; | |
bottom: 0; | |
content:" "; | |
} | |
/* Left half */ | |
.outer:before, .inner:before { | |
left: 0; | |
right: 50%; | |
border-radius: 72px 0 0 72px; /* diameter */ | |
} | |
/* Right half */ | |
.outer:after, .inner:after { | |
left: 50%; | |
right: 0; | |
border-radius: 0 72px 72px 0; /* diameter */ | |
} | |
/* Half gradients */ | |
.outer:before { | |
background-image: -webkit-linear-gradient(top, hsla(0, 0%, 100%, 0.0), hsla(0, 0%, 100%, 0.5)); | |
background-image: -moz-linear-gradient(top, hsla(0, 0%, 100%, 0.0), hsla(0, 0%, 100%, 0.5)); | |
background-image: linear-gradient(to bottom, hsla(0, 0%, 100%, 0.0), hsla(0, 0%, 100%, 0.5)); | |
} | |
.outer:after { | |
background-image: -webkit-linear-gradient(top, hsla(0, 0%, 100%, 1.0), hsla(0, 0%, 100%, 0.5)); | |
background-image: -moz-linear-gradient(top, hsla(0, 0%, 100%, 1.0), hsla(0, 0%, 100%, 0.5)); | |
background-image: linear-gradient(to bottom, hsla(0, 0%, 100%, 1.0), hsla(0, 0%, 100%, 0.5)); | |
} | |
.inner:before { | |
background-image: -webkit-linear-gradient(top, hsla(0, 0%, 100%, 0.5), hsla(0, 0%, 75%, 0.5)); | |
background-image: -moz-linear-gradient(top, hsla(0, 0%, 100%, 0.5), hsla(0, 0%, 75%, 0.5)); | |
background-image: linear-gradient(to bottom, hsla(0, 0%, 100%, 0.5), hsla(0, 0%, 75%, 0.5)); | |
} | |
.inner:after { | |
background-image: -webkit-linear-gradient(top, hsla(0, 0%, 50%, 0.5), hsla(0, 0%, 75%, 0.5)); | |
background-image: -moz-linear-gradient(top, hsla(0, 0%, 50%, 0.5), hsla(0, 0%, 75%, 0.5)); | |
background-image: linear-gradient(to bottom, hsla(0, 0%, 50%, 0.5), hsla(0, 0%, 75%, 0.5)); | |
} | |
/* Spinning animations */ | |
@keyframes rotate-outer { | |
0% { | |
transform: rotate(0deg); | |
-moz-transform: rotate(0deg); | |
-webkit-transform: rotate(0deg); | |
} | |
100% { | |
transform: rotate(1080deg); | |
-moz-transform: rotate(1080deg); | |
-webkit-transform: rotate(1080deg); | |
} | |
} | |
@-webkit-keyframes rotate-outer { | |
0% { | |
-webkit-transform: rotate(0deg); | |
} | |
100% { | |
-webkit-transform: rotate(1080deg); | |
} | |
} | |
@keyframes rotate-inner { | |
0% { | |
transform: rotate(720deg); | |
-moz-transform: rotate(720deg); | |
-webkit-transform: rotate(720deg); | |
} | |
100% { | |
transform: rotate(0deg); | |
-moz-transform: rotate(0deg); | |
-webkit-transform: rotate(0deg); | |
} | |
} | |
@-webkit-keyframes rotate-inner { | |
0% { | |
-webkit-transform: rotate(720deg); | |
} | |
100% { | |
-webkit-transform: rotate(0deg); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment