Animation How to - Create sprite sheet animation








Question

We would like to know how to create sprite sheet animation.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
@-webkit-keyframes wink {<!--  w  w w  . j a  va  2 s .c om-->
from { background-position:0px;}
to {background-position: -500px;}
}
@-moz-keyframes wink {
    from { background-position:0px;}
    to {background-position: -500px;}
}
.hi {
  width: 50px;
  height: 72px;
  background-image: url("http://i.imgur.com/6za6I.png");
  -webkit-animation: wink .8s steps(10, end) infinite;
  -moz-animation: wink .8s steps(10, end) infinite;
}
</style>
</head>
<body>
  <img src="http://i.imgur.com/6za6I.png" />
  <div class="hi"></div>
</body>
</html>

The code above is rendered as follows: