我正在使用 jquery isotope 和无限滚动并想使用图像预加载器
我正在使用的图像预加载器是这样的:图像预加载器
$('.image').preloader({
loader: '/images_/icons/img_pre.gif',
fadeIn: 700,
delay : 200
});
它在第一页上完美运行,但不会为无限滚动的项目触发,所以我需要将它放在同位素回调中的某个位置,但是在哪里?有任何想法吗?
这是我使用的同位素回调代码:
// call Isotope as a callback
function( newElements ) {
$container.isotope( 'insert', $( newElements ) );
$container.isotope({ filter: '*' });
}