Skip to content

Instantly share code, notes, and snippets.

@dabit3
Created April 4, 2014 19:25
Show Gist options
  • Save dabit3/9981510 to your computer and use it in GitHub Desktop.
Save dabit3/9981510 to your computer and use it in GitHub Desktop.
Untitled
@keyframes rotate{
from{
transform:rotate(0deg) translate(-10px) rotate(0deg);
background-color:green;
}
to{
transform:rotate(360deg) translate(-10px) rotate(-360deg);
background-color:yellow;
}
}
.spinner{
position:relative;
top:0;
left:10px;
display:inline-block;
width:8px;
height:8px;
background-color:#green;
border-radius:5px;
animation:1.5s rotate infinite linear;
}
CSS3 spinner asdf <div class=spinner></div>
{"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