Im trying to do an animation with skrollr, but when the background-images are changing they disappear for a short time, sometimes when the server lags for a sec they disappear completely until I scroll back and forwards again.
Heres the code im using:
@-skrollr-keyframes name {
1100 {background: url(img/heads/picture1.png) no-repeat;}
1101 {background: url(img/heads/picture2.png) no-repeat;}
}
BTW: The div that contains the background image is inside a moving div. Any way to fix this issue?
EDIT: Every background image which is animated is flickering alot!
PS: Sorry for my bad english, im german.
First of all, from skrollr's documentation, skrollr doesn't know how to animate in between images. To take care of this issue, you need to add an exclamation mark before the css property of the url like below
See source here
For the flickering images, consider preloading all the images before you render anything on the DOM. Try this,
Hope it helps, good luck!