最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

jQuery.lazyload+masonry改良圖片瀑布流代碼

 更新時(shí)間:2014年06月20日 10:44:19   投稿:hebedich  
這里主要是使用jQuery.lazyload配合masonry實(shí)現(xiàn)瀑布流的重新排列,有時(shí)候網(wǎng)站的速度慢,圖片加載慢,獲取不到圖片的寬度和高度,所以使用lazyload可以在圖片加載完之后,進(jìn)行瀑布流的重新排列。

實(shí)現(xiàn)方法如下:(這里只發(fā)jquery了,相關(guān)html代碼請(qǐng)各位自己腦補(bǔ)一下吧,我就不發(fā)了,哈哈)

/**
 * 自動(dòng)刷新
 * @type {*|jQuery|HTMLElement}
 */
var $container = $('#main');
$container.imagesLoaded( function(){
  $container.masonry({
    itemSelector : '.item',
    columnWidth:205,
    gutterWidth:10,
    isAnimated: true
  });
});
var pre_href;
//滾動(dòng)
$(window).scroll(function(){
  // 當(dāng)滾動(dòng)到最底部以上100像素時(shí), 加載新內(nèi)容
  if ($(document).height() - $(this).scrollTop() - $(this).height()<100) {
    ajax_load_data();
  }
});
 
function ajax_load_data(){
  var href = $('#page-nav').find('.nextprev').attr('href');
  if(href && href != pre_href){
    console.log('href = '+href);
    pre_href = href;
 
    $.ajax({
      url:href,//獲取元素列表的地址
      data:{'act':'ajax_wap_index'},
      dataType:'json',
      type:'post',
      beforeSend:function(){
        show_loading_body();
      },
      complete:function(){
        show_loading_body();
      },
      success:function(data){
        if(data.status != undefined && data.status == 'ok'){
          if(data.html){
            var $boxes = $( data.html );
            $container.append( $boxes ).masonry("appended", $boxes, true);//追加元素
            $container.imagesLoaded(function () {
              $container.masonry();
            });//加載完圖片后,會(huì)實(shí)現(xiàn)自動(dòng)重新排列?!具@里是重點(diǎn)】
          }
 
          if(data.str_pages){
            $('#page-nav').html(data.str_pages);//設(shè)置下一個(gè)分頁(yè)的地址?!究梢宰约貉a(bǔ)充】
          }
        }
      }
    });
  }
}

相關(guān)文章

最新評(píng)論

上栗县| 禹州市| 黎城县| 永春县| 鹤岗市| 若尔盖县| 汕尾市| 陆良县| 时尚| 东源县| 天峻县| 桑日县| 乌鲁木齐市| 灯塔市| 垦利县| 濮阳市| 临武县| 普宁市| 湘西| 平果县| 安乡县| 资源县| 瓮安县| 宁陵县| 丹凤县| 日喀则市| 崇明县| 定兴县| 桐梓县| 勃利县| 乌什县| 萍乡市| 鹿泉市| 清远市| 白河县| 东莞市| 合作市| 醴陵市| 缙云县| 九江市| 茶陵县|