Skip to content

Instantly share code, notes, and snippets.

@LeaVerou
Created June 7, 2012 08:17
Show Gist options
  • Save LeaVerou/2887366 to your computer and use it in GitHub Desktop.
Save LeaVerou/2887366 to your computer and use it in GitHub Desktop.
Sprite Sheet animation with CSS3 using the steps() feature
/**
* Sprite Sheet animation with CSS3 using the steps() feature
* Simplified from simurai’s original example at http://jsfiddle.net/simurai/CGmCe/
*/
@keyframes wink {
from { background-position: 0px; }
to { background-position: -500px; }
}
body {
background: url("http://i.imgur.com/6za6I.png");
animation: wink .8s steps(10, end) infinite;
}​
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment