我正在使用imagesLoaded.js等待拍摄一些evetns之前的图像。它适用于Chrome和Safari,但不适用于Firefox。这是代码:
$('#consumer-bg, #page').imagesLoaded({ background: true })
//Place anything you want to run after images in here
.done( function( instance ) {
//remove Preloader
TweenLite.to($('#preloader'), 1, {autoAlpha: 0 });
//load menu
menu(1000);
//Run home animation
homeAnimation(1500);
//how step animation
howSteps();
charitySteps();
});
如果我从.imagesLoaded
中取出我的功能,那么该网站就可以正常加载。当它们在其中时,预加载器和其他功能永远不会发射。
任何想法?