Skip to content

Instantly share code, notes, and snippets.

@CarterTsai
Created March 28, 2014 15:37
Show Gist options
  • Save CarterTsai/9835629 to your computer and use it in GitHub Desktop.
Save CarterTsai/9835629 to your computer and use it in GitHub Desktop.
A Pen by CarterTsai.
<div class="spinftw">C</div>
@import "compass";
.spinftw {
background: #ccc;
border-radius:10px;
display:inline-block;
height:30px;
width:30px;
position: absolute;
top:100px;
left: 300px;
text-align:center;
line-height:30px;
animation:loader infinite 4s;
animation-duration: 2s;
animation-name: change;
}
body {
}
@keyframes change {
from {
box-shadow:35px 35px #3498db,
-35px 35px #9b59b6,
-35px -35px #e74c3c,
35px -35px #2ecc71;
transform: rotate(0.5turn)
}
to {
box-shadow:0px 0px #3498db,
0px 0px #9b59b6,
0px 0px #e74c3c,
0px 0px #2ecc71;
transform: rotate(0turn)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment