I have animated sprites with css steps and when tested on Firefox and Explorer11 i understand that it do not behave like Chrome.
I have the animattion like the below
@keyframes sprite {
from { background-position: 0 0%; }
to { background-position: 0 100%; }
}
My sprites are vertical. And i have teh animation like this on the elements
-webkit-animation: sprite 3.5s steps(60) infinite; // the frame count is minus - from original frame count
-moz-animation: sprite 3.5s steps(60) infinite;
-ms-animation: sprite 3.5s steps(60) infinite;
-o-animation: sprite 3.5s steps(60) infinite;
animation: sprite 3.5s steps(60) infinite;
background: url(images/sprites/solutions/solution_2_61square_450-min.png) no-repeat 0 0% !important;
background-size: 100% !important;
So all are shaking In Explorer and do not play in Firefox.
Any idea why?
See working demo https://jsfiddle.net/anahitdev/02kmpr6u/ Thanks