Created
February 21, 2012 23:28
-
-
Save alexmwalker/1879800 to your computer and use it in GitHub Desktop.
My Brain Hertz!
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
/** | |
* 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;} | |
} | |
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
<!-- content to be placed inside <body>…</body> --> | |
<div id="hertzscreen"> | |
</div> |
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
{"view":"split","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment