Skip to content

Instantly share code, notes, and snippets.

@oddlyfunctional
Created July 28, 2015 21:02
Show Gist options
  • Save oddlyfunctional/2e48991a056cea9e44f3 to your computer and use it in GitHub Desktop.
Save oddlyfunctional/2e48991a056cea9e44f3 to your computer and use it in GitHub Desktop.
/* Colors */
body {
background: url(http://i.imgur.com/aZty7Mq.png);
animation: mymove 3s linear infinite;
-webkit-animation: mymove 3s linear infinite;
-moz-animation: mymove 3s linear infinite;
}
@keyframes mymove {
0% { background-position: 0 0; }
50% { background-position: 100% 0; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment