Bootstrap同位素和lazyload通过json获取/加载图像

时间:2013-06-22 14:50:34

标签: jquery jquery-isotope jquery-lazyload

ajax提取的正常同位素使用正在发挥作用。 见工作 jsfiddle

同位素与lazyload通过ajax fetch无法正常工作。 看问题jsfiddle

问题: lazyload不会触发并继续显示灰色图像。

用于lazyload设置的javaScript:

$(document).ready(function () {
    //
    // initialize at ready ;
    //
    $container.isotope({
        itemSelector: '.box',
        columnWidth: function (containerWidth) {
            return containerWidth / 12;
        },
        onLayout: function () {
            $win.trigger("scroll");
        }
    });
    //
    // here i will be using data through api
    // For now I am defining json manually
    // var json is defined at top of this code 
    // considering json return was success
    //$.getJSON(APIURL, function (json) {
    var newElements = "";
    $.each(json, function (key, value) {
        console.log(key);
        newElements +=
            '<div class="box">' +
            '<img class="lazy" src="' + small_img + '" data-originalsrc="' + value['image'] + '" width="' + value['width'] + '" height="' + value['height'] + '" />' +
            '</div>';
    });

    var $newElems = $(newElements);

    $container.append($newElems).imagesLoaded(function () {

        $container.isotope('appended', $newElems);

        $imgs.lazyload({
            container: $container,
            effect: "fadeIn",

        }).removeClass("lazy");
        $imgs.trigger('scroll');


    });
    //});
});

1 个答案:

答案 0 :(得分:2)

我解决了。Working Fiddle

导致失败的问题:

  1. Bootstrap 我必须把style =&#34; width:XX; height:XX&#34;在图像标签中也有正常的宽度和高度参数来覆盖bootstrap img {} css定义,这是一个问题。 <img class="lazy" width="200" height="300" style="width: 200px; height: 300px;" data-original="abc.jpg" src="lazygrey.gif">

  2. vars在AJAX之前:由于我使用ajax内容,因此在ajax调用不起作用之前,var定义为var $imgs= $("img.lazy");。所以为了安全起见,我直接使用$(&#34; img.lazy&#34;)。