这就是我正在做的事情。一个 tumblr 博客主题,我遇到了类似的问题
一切都很好,除了音频播放器。它们不会加载到第二页并显示此消息 [需要 Flash 9 才能收听音频。]。
<script type="text/javascript" >
$(function(){
var $container = $('#blog');
$container.imagesLoaded(function(){
$container.masonry({
itemSelector: '.post',
columnWidth: 275,
gutterWidth: 10,
isAnimated: true,
animationOptions: {
duration: 750,
easing: 'linear',
queue: false,
}
});
});
$container.infinitescroll({
navSelector : '#page_nav', // selector for the paged navigation
nextSelector : '#page_nav a', // selector for the NEXT link (to page 2)
itemSelector : '.post', // 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>
该站点上的其他解决方案说我需要在回调函数中使用音频修复,无论我尝试在上面的原始脚本中实现此代码的任何地方都会破坏砌体代码并弄乱网格布局。所以我问你是否可以帮助我,我正在使用音频播放器所在的 {PostID}
<div class="audio" id={PostID}>{AudioPlayerWhite}</div>
像这样
<div class="post audio">
{block:AlbumArt}
<img src="{AlbumArtURL}" width="100%" />
{/block:AlbumArt}
<div class="audio" id={PostID}>{AudioPlayerWhite}</div>
{block:IfHideCaption}{block:Caption}
<div class="caption">{Caption}</div>
{/block:Caption}{/block:IfHideCaption}
<br />
<div class="tmbl-ico">
<div class="my-like" data-reblog="{ReblogURL}" data-id="{PostID}" title="Like"></div>
<div class="my-reblog"><a href="{ReblogURL}"><img src="http://static.tumblr.com/m3fp1tf/G3Wm7bksh/trans.png" /></a></div>
<div class="my-plink"><a href="{Permalink}"><img src="http://static.tumblr.com/m3fp1tf/G3Wm7bksh/trans.png" /></a></div>
</div>
那么如何将它(其他解决方案中的以下代码)放入我的而不破坏它?我还想知道其他解决方案中的代码是否需要将变量更改为我自己的变量,以及可能是哪些变量,我对此很陌生。