Skip to content

Instantly share code, notes, and snippets.

@dtipson
Forked from LeaVerou/dabblet.css
Created July 20, 2013 23:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dtipson/6046799 to your computer and use it in GitHub Desktop.
Save dtipson/6046799 to your computer and use it in GitHub Desktop.
Loading animation like the one seen on http://www.freeger.com/projects/contextad/ with CSS
/**
* 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: static;
left: 50%;
color: hsla(0,0%,100%,.3);
font: 900 800% Baskerville, 'Palatino Linotype', Palatino, serif;
}
@keyframes loading {
from { max-width: 0; }
}
h1:before {
content: 'Lies';
position: absolute;
overflow: hidden;
max-width: 4em;
color: red;
animation: loading 1s linear;
z-index:-1;
}
<h1 data-content="Contad">Contad</h1>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment