-
-
Save evanshajed/6103794 to your computer and use it in GitHub Desktop.
Loading animation like the one seen on http://www.freeger.com/projects/contextad/ with CSS
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 animation like the one seen on http://www.freeger.com/projects/contextad/ with CSS | |
* Caveat: Not DRY. The content needs to be repeated in a data- attribute (or directly in the CSS). | |
*/ | |
body { | |
background: #ccc51c; | |
min-height: 100%; | |
} | |
h1 { | |
position: absolute; | |
left: 50%; | |
margin-left: -1.9em; | |
color: hsla(0,0%,100%,.3); | |
font: 900 800% Baskerville, 'Palatino Linotype', Palatino, serif; | |
} | |
@keyframes loading { | |
from { max-width: 0; } | |
} | |
h1:before { | |
content: attr(data-content); | |
position: absolute; | |
overflow: hidden; | |
max-width: 4em; | |
color: white; | |
animation: loading 10s linear; | |
} |
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
<h1 data-content="Contad">Contad</h1> |
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
// alert('Hello world!'); |
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","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment