When I use CSS3 animation to change a background infinitely between two images, the images will have a fading effect even if I use steps(2): http://jsfiddle.net/exdestroyer/hmb2m8ty/`
body{
background: purple;
}
.rabbit{
width: 130px;
height: 224px;
background-size: 100%;
animation: jump 2s infinite steps(2);
}
@keyframes jump{
from{
background: url(http://segmentfault.com/img/bVp56q);background-size: 100%;
}
to{
background: url(http://segmentfault.com/img/bVp56r);background-size: 100%;
}
}`
So how to fix the problem and remove the effect?