Skip to content

Instantly share code, notes, and snippets.

@yyolk
Created November 13, 2012 02:17
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 yyolk/4063557 to your computer and use it in GitHub Desktop.
Save yyolk/4063557 to your computer and use it in GitHub Desktop.
YolkEverything.css
@-webkit-keyframes move {
0% {
background-position: 1000px 0;
}
50% {
background-position: -1000px 0;
}
100% {
background-position: 1000px 0;
}
}
* {
background-image: url("http://i.imgur.com/p3ttH.png");
repeat: repeat;
-webkit-animation-name: move;
-webkit-animation-duration: 400s;
-webkit-animation-iteration-count: infinite;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment