我试图使用无限滚动内的新Tumblr喜欢按钮(允许您的主题从主页上的个人Tumblr帖子上的喜欢按钮)他们为第一个"页面"的前15个帖子工作,但一旦它加载另一个页面,喜欢按钮停止工作。以下是Tumblr在文档页面上给出的说明:
函数:Tumblr.LikeButton.get_status_by_page(n)
描述:在请求一个新的post页面后调用这个函数。获取页面刚加载为整数的数字。函数:Tumblr.LikeButton.get_status_by_post_ids([n,n,n])
描述:请求喜欢的状态为个别职位。获取一个post id数组。
由于我不确定如何正确应用JQuery,我不确定在哪里添加这些功能,这是我的JS为我当前的主题:
// MASONRY
var $container = $('#content');
$container.imagesLoaded( function(){
$container.masonry({
itemSelector: '.entry',
columnWidth: 220
});
});
// INFINITE SCROLL
$container.infinitescroll({
navSelector : '#pagination',
nextSelector : '#pagination li a.pagination_nextlink',
itemSelector : '.entry',
loading: {
img: 'http://static.tumblr.com/glziqhp/K37m9yaub/257__1_.gif'
}
},
function( newElements ) {
var $newElems = $( newElements ).css({
opacity: 0
});
$newElems.imagesLoaded(function(){
$newElems.animate({
opacity: 1
});
$container.masonry(
'appended', $newElems, true
);
});
});
首先,您需要为每个帖子添加唯一的帖子ID:
<div class="entry masonry-brick" id="{PostID}">...</div>
文档提到,一旦新帖子(或新页面)被添加/加载,就请求类似的状态:
function( newElements ) {
var $newElems = $( newElements ).css({
opacity: 0
});
// Create Array of $newElems IDs
var $newElemsIDs = $newElems.map(function () {
return this.id;
}).get();
$newElems.imagesLoaded(function(){
$newElems.animate({
opacity: 1
});
$container.masonry(
'appended', $newElems, true
);
// Let's just see what we have, remove console.log() if working
console.log($newElems, $newElemsIDs);
Tumblr.LikeButton.get_status_by_post_ids($newElemsIDs);
});
});