Skip to content

Instantly share code, notes, and snippets.

@xieranmaya
Created June 2, 2015 08:04
Show Gist options
  • Save xieranmaya/276be74a041ee4181ae9 to your computer and use it in GitHub Desktop.
Save xieranmaya/276be74a041ee4181ae9 to your computer and use it in GitHub Desktop.
.loading-anim{
font-size: 16px;
display: inline-block;
&:after{
content: "\2026";
font-family: "Simsun";
overflow: hidden;
display: inline-block;
vertical-align: bottom;
animation: loading-anim 1.2s infinite;
}
}
@keyframes loading-anim{
0%, 25%{
width: 0;
}
26%, 50%{
width: 0.333em;
}
51%, 75%{
width: 0.666em;
}
76%, 100%{
width: 1em;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment