0

我有一个<div id="content" class="clearfix"></div> which self 填充了来自我服务器上单独目录的图像 url 列表。

这是该站点的实时 URL:http: //ilovesmallies.com/forum/showcase.php

我想在这个 div 中使用无限滚动和砌体插件。

但是,我不确定如何使用此脚本指向图像网址列表...

这是它现在的编码方式并且不起作用。

<script>
  $(function(){

    var $container = $('#content');

    $container.imagesLoaded(function(){
      $container.masonry({
        itemSelector: '.box',
        columnWidth: 250
      });
    });

    $container.infinitescroll({
      navSelector  : '#content',    // selector for the paged navigation 
      nextSelector : '#content a',  // selector for the NEXT link (to page 2)
      itemSelector : '.box',     // selector for all items you'll retrieve
      loading: {
          finishedMsg: 'No more pages to load.',
          img: 'http://i.imgur.com/6RMhx.gif'
        }
      },
      // trigger Masonry as a callback
      function( newElements ) {
        // hide new items while they are loading
        var $newElems = $( newElements ).css({ opacity: 0 });
        // ensure that images load before adding to masonry layout
        $newElems.imagesLoaded(function(){
          // show elems now they're ready
          $newElems.animate({ opacity: 1 });
          $container.masonry( 'appended', $newElems, true ); 
        });
      }
    );

  });
</script>
4

1 回答 1

0

你能渲染所有的图像吗?

我最喜欢的方法是首先对图像项进行分页,然后应用:

itemSelector <---> 每个项目的类。(在你的情况下,它可以是每个图像)

navSelector <---> 分页元素的id

nextSelector <---> 指向分页中的元素(链接到下一页)

我只是让分页不显示。

于 2012-11-01T17:57:32.927 回答