Created
January 9, 2012 03:25
-
-
Save chriscoyier/1580862 to your computer and use it in GitHub Desktop.
Loading dot dot dot
This file contains 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
/* | |
Loading dot dot dot | |
*/ | |
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; } | |
} | |
This file contains 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
<div class="loading"> | |
Loading... | |
</div> |
This file contains 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
{"view":"split-vertical","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment