Skip to content

Instantly share code, notes, and snippets.

@Victa
Created January 9, 2012 10:04
Show Gist options
  • Select an option

  • Save Victa/1582288 to your computer and use it in GitHub Desktop.

Select an option

Save Victa/1582288 to your computer and use it in GitHub Desktop.
Loading dot dot dot in CSS
body {
padding: 100px;
font-size: 62.5%;
}
.loading {
font: 16px Monaco; /* no fallback cuz spacing would probably be off... */
width: 6.1em; /* Was hoping 1 char = 1 em but didn't work out quite */
overflow: hidden;
animation: dotdotdot linear 1s infinite;
}
@keyframes dotdotdot {
0% { width: 4.5em; }
75% { width: 6.1em; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment