目前,当我将新物品添加到砌体容器中时,它们会添加到左上角,然后飞到适当的位置。但是,在砌体网站的this example中,新元素显示在底部。

它在演示说明中说,该演示“利用了IsAnimatedFromBottom标志”,但在代码中看不到:

<script>
  $(function(){

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

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

    $container.infinitescroll({
      navSelector  : '#page-nav',    // selector for the paged navigation
      nextSelector : '#page-nav 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 ) {
        var $newElems = $( newElements );
        // ensure that images load before adding to masonry layout
        $newElems.imagesLoaded(function(){
          $container.masonry( 'appended', $newElems, true );
        });
      }
    );

  });
</script>


还要查看列出的options,它似乎没有列出,所以有人知道如何使用它吗?

最佳答案

我本人遇到了麻烦。我认为您实际上是将标志设置为true,所以不是

.masonry( 'appended', $content, isAnimatedFromBottom )


你会想要

.masonry( 'appended', $content, true)

关于jquery - 使用jQuery Masonry IsAnimatedFromBottom,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7308026/

10-12 00:10