Skip to content

Instantly share code, notes, and snippets.

@LeaVerou
Created December 7, 2013 18:02
Show Gist options
  • Save LeaVerou/7846280 to your computer and use it in GitHub Desktop.
Save LeaVerou/7846280 to your computer and use it in GitHub Desktop.
iMessage-style loader
/**
* iMessage-style loader
*/
@keyframes fade {
to { background: rgba(0,0,0,.1); }
}
.progress,
.progress:before,
.progress:after {
content: '';
display: inline-block;
width: 1em;
height: 1em;
border-radius: 50%;
background: rgba(0,0,0,.5);
animation: .6s fade linear alternate infinite;
}
.progress {
white-space: nowrap;
}
.progress:before {
margin-left: 1.3em;
animation-delay: .2s;
}
.progress:after {
margin-left: .3em;
animation-delay: .4s;
}
<div class="progress"></div>
{"view":"split-vertical","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