Sprite Animation


Image Used


CSS Source


.walk {
    width: 125px;
    height: 270px;
    background-image: url("../Images/walk.png");
    
    -webkit-animation: play 1s steps(8) infinite;
       -moz-animation: play 1s steps(8) infinite;
        -ms-animation: play 1s steps(8) infinite;
         -o-animation: play 1s steps(8) infinite;
            animation: play 1s steps(8) infinite;
}

@-webkit-keyframes play {
   from { background-position:    -0px; }
     to { background-position: -1000px; }
}

@-moz-keyframes play {
   from { background-position:    -0px; }
     to { background-position: -1000px; }
}

@-ms-keyframes play {
   from { background-position:    -0px; }
     to { background-position: -1000px; }
}

@-o-keyframes play {
   from { background-position:    -0px; }
     to { background-position: -1000px; }
}

@keyframes play {
   from { background-position:    -0px; }
     to { background-position: -1000px; }
}

My Showcase

Copyright © 2013 Chris Hanna