我在这里有一个Flexslider图库,它使用延迟加载和图片填充,效果非常好,感谢社区以前的帖子。
我遇到的唯一问题是,当我点击我的图库的最后一个缩略图时,滑块会滑动到该幻灯片,但尚未加载任何内容。任何人都可以帮我解释这里的逻辑吗?
我想也许可以检查点击的拇指在滑动之前是否有加载的图像,如果没有,加载图像并做你的事情?
http://codepen.io/anon/pen/OVveXK
var mainSlide = $('#slider-main');
var navSlide = $('#slider-nav');
mainSlide.flexslider({
animation: 'slide',
controlNav: false,
animationLoop: false,
slideshow: false,
start: function (slider) {
navSlide.addClass('flex-attached');
/* lazy load first image with picturefill */
$(slider).find('.slides').children().eq(1).find('div.img span.lazy').each(function (i, elm) {
var $elm = $(elm);
var src = $elm.find('img').attr('data-src');
$elm.find('img').attr('src', src);
var content = $elm.html();
var $pic = $('<picture id="' + $elm.attr('id') + '">' + content + '</picture>');
var pic = $pic[0];
$elm.after(pic); // insert the picture
$elm.remove(); // remove the span
window.picturefill({ elements: [pic] });
});
},
after: function (slider) {
/* lazy load next image with picturefill */
$(slider).find('.slides').children().eq(slider.animatingTo + 1).find('div.img span.lazy').each(function (i, elm) {
var $elm = $(elm);
var src = $elm.find('img').attr('data-src');
$elm.find('img').attr('src', src);
var content = $elm.html();
var $pic = $('<picture id="' + $elm.attr('id') + '">' + content + '</picture>');
var pic = $pic[0];
$elm.after(pic); // insert the picture
$elm.remove(); // remove the span
window.picturefill({ elements: [pic] });
});
}
});
navSlide.flexslider({
animation: 'slide',
controlNav: false,
animationLoop: false,
slideshow: false,
asNavFor: '#slider-main',
itemWidth: 120,
itemMargin: 5,
directionNav: false,
start: function () {
navSlide.addClass('flex-attached');
}
});