Skip to content

Instantly share code, notes, and snippets.

@LeaVerou
Created November 9, 2013 16:43
Show Gist options
  • Save LeaVerou/7387255 to your computer and use it in GitHub Desktop.
Save LeaVerou/7387255 to your computer and use it in GitHub Desktop.
Flexible Google-style progress indicator
/**
* Flexible Google-style progress indicator
*/
@keyframes progress {
50% { border-width: .5em 0; }
to { border-width: .5em 0 0 0; }
}
@keyframes rotate {
to { transform: rotate(-270deg); }
}
.progress {
display: inline-block;
font-size: 50px; /* Size of the progress indicator */
width: 1em; height: 1em;
border: solid white;
border-top-color: #ddd;
border-width: 0 0 .5em 0;
border-radius: 50%;
box-sizing: border-box;
margin: .1em .2em;
background: linear-gradient(white 50%, #ddd 50%);
background-origin: border-box;
transform: rotate(90deg);
animation: rotate 1s steps(4) infinite,
progress .25s linear infinite alternate;
text-indent: 99em;
overflow: hidden;
}
.progress.small { font-size: 16px }
.progress.large { font-size: 100px }
<div class="small progress">Loading…</div>
<div class="progress">Loading…</div>
<div class="large progress">Loading…</div>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment