Skip to content

Instantly share code, notes, and snippets.

@alexmwalker
Created February 21, 2012 23:28
Show Gist options
  • Save alexmwalker/1879800 to your computer and use it in GitHub Desktop.
Save alexmwalker/1879800 to your computer and use it in GitHub Desktop.
My Brain Hertz!
/**
* My Brain Hertz!
*/
#hertzscreen{
width:380px;
height:223px;
margin: 100px auto;
border:1px #aaa dashed;
background: url(http://sitepointstatic.com/examples/css3/animation/hertz.png);
animation: hertz 4s infinite linear;
}
@keyframes hertz {
0% {background-position:0px 0px;}
100% {background-position:380px 0px;}
}
<!-- content to be placed inside <body>…</body> -->
<div id="hertzscreen">
</div>
{"view":"split","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment