Created
January 9, 2012 10:04
-
-
Save Victa/1582288 to your computer and use it in GitHub Desktop.
Loading dot dot dot in CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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