Skip to content

Instantly share code, notes, and snippets.

@dziudek
Created May 24, 2013 08:20
Show Gist options
  • Save dziudek/5642076 to your computer and use it in GitHub Desktop.
Save dziudek/5642076 to your computer and use it in GitHub Desktop.
CSS Loader - bubble
/**
* CSS Loader - bubble
*/
#loader {
animation-duration: .75s;
animation-iteration-count: infinite;
animation-name: loader;
animation-timing-function: linear;
background: #fc9;
border-radius: 50%;
height: 18px;
width: 18px;
}
@keyframes loader {
from, to {
transform: scale(1);
}
50% {
transform: scale(.5);
}
}
<div id="loader"></div>
// alert('Hello world!');
{"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