-1
我正在製作一個使用jquery-masonry的wordpress主題,但對於我的生活我無法弄清楚如何在isAnimatedFromBottom中使用append方法。以下是我目前使用的代碼。我試圖讓這個與jetpack無限滾動工作。jQuery砌體IsAnimatedFromBottom in Wordpress
任何洞察力或幫助非常感謝。
jQuery(document).ready(function($) {
var $container = $('#content');
$container.imagesLoaded(function(){
$container.masonry({
itemSelector: '.post',
isAnimated: true,
animationOptions: {
duration: 300,
easing: 'linear',
queue: false
}
});
});
});