The background-image cannot be animated with keyframes like below:
@keyframes kick{
0%{background-image: url(images/img-man-1.png);}
25%{background-image: url(images/img-man-2.png);}
50%{background-image: url(images/img-man-3.png);}
75%{background-image: url(images/img-man-4.png);}
100%{background-image: url(images/img-man-5.png);}
}
.img-man{
animation: kick 1.2s;
animation-play-state: running;
animation-iteration-count: infinite;
}
So, is there any method with css3. If it's impossible to do with css3 jquery is welcome.