I tried to use CSS animation with background size cover ... but it seems that CSS animation override the "background-size:cover"
Visit jsfiddle.net/zNCY5/
I tried to use CSS animation with background size cover ... but it seems that CSS animation override the "background-size:cover"
Visit jsfiddle.net/zNCY5/
You need to put
background-size: cover;
in your@keyframes
. Here is a fiddle: http://jsfiddle.net/Ex2mT/Repeat this for each percentage you have.