wookmark修改和李并排和彼此

时间:2013-09-26 15:57:15

标签: javascript jquery html css

我正在为我的项目使用wookmark插件,当V滚动到达底部时我需要加载更多项目。 插件网址:http://www.wookmark.com/jquery-plugin 我使用的滚动功能:

function _scroll() {
    var v = false;
    $(document).scroll(function(e) {
        var t = document.height - (window.pageYOffset + window.innerHeight);
        if ((t <= 20) && ( !v)) {
            v = true;
            $.ajax({ type:"POST",
            data: {type:$("#type").val(),id:$("#pid").val(),lid:$("#lid").val()},
            async:true,
            cache:false,
            url:"fetchMore.php?v=18",
            success: function(d) {
                var t = d.split('{@}');
                if (parseInt($("#lid").val()) != t[1]) { 
                    $("#tiles").append(t[0]);
                    $("#lid").val(t[1]);
                    applyLayout();
                }
                v = false;
            } });
        }
    });
}

和applylayout函数:

function applyLayout() {
          $('#tiles').imagesLoaded(function() {
            // Destroy the old handler
            if ($handler.wookmarkInstance) {
              $handler.wookmarkInstance.clear();
            }
            $handler = $('#tiles li');
            $handler.wookmark(options);
          });
}

最后我的选项和排序功能:

function comparatorId(a, b) {
          return $(a).attr("id") > $(b).attr("id") ? -1 : 1;
        }
function _Animate() {
     $('#tiles').imagesLoaded(function() {
          options = {
          autoResize: true,
          container: $('#main'),
          offset: 2,
          itemWidth: 210,
          comparator: comparatorId,
          direction: 'right',
          fillEmptySpace: false
        };
        $handler = $('#tiles li');
        $handler.wookmark(options);
      });
}

问题是: 当我要加载更多的项目是随机重新排序就像没有comparatorId函数.. 有什么办法吗? 如果没有解决方案.. 我怎么能像这样的布局做一个ul li标签? 我可以将它们并排放置,但我希望它们能够并排+并在彼此之下

1 个答案:

答案 0 :(得分:0)

我已经解决了这个问题.. 它只是为li添加data-id =“{ID}”标记并删除所有类