我正在制作一个使用 jquery-masonry 的 wordpress 主题,但是对于我的生活,我无法弄清楚如何将 append 方法与 isAnimatedFromBottom 一起使用。下面是我目前正在使用的代码。我试图让它与喷气背包无限滚动一起工作。
非常感谢任何见解或帮助。
jQuery(document).ready(function($) {
var $container = $('#content');
$container.imagesLoaded(function(){
$container.masonry({
itemSelector: '.post',
isAnimated: true,
animationOptions: {
duration: 300,
easing: 'linear',
queue: false
}
});
});
});