Skip to content

Instantly share code, notes, and snippets.

@yyolk
Last active August 29, 2015 14:27
Show Gist options
  • Save yyolk/5d2f193fbd544222e0c9 to your computer and use it in GitHub Desktop.
Save yyolk/5d2f193fbd544222e0c9 to your computer and use it in GitHub Desktop.
Stylish trick
@-webkit-keyframes move {
0%, 100% {
background-position: 1000px 0;
}
50% {
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