我正在使用 Drupal Views 将带有这个无限滚动脚本的内容加载到砖石风格的项目网格中。
它无限滚动,但附加的项目不保留原始项目的 CSS 属性。我不太确定为什么会这样。
此外,我正在使用 jQuery 悬停效果在我的图像上“浮动”内容。这是非常简单的代码。我无法想象它对这个问题有任何影响,但这里以防万一:
悬停效果的jQuery
$j('div.blog-list').on(".blog-thumbs-animate").hover(function(){
$j("img", this).stop().animate({opacity: 0.9},{queue:false,duration:75});
$j(".bhover", this).animate({opacity: 0.9},{queue:false,duration:75});
}, function() {
$j("img", this).stop().animate({opacity: 1},{queue:false,duration:75});
$j(".bhover", this).animate({opacity: 0},{queue:false,duration:75});
});
用于砌体和无限滚动的 jQuery:
<script>
(function($){
var $container = $('.blog-list');
$container.imagesLoaded(function($){
$container.masonry({
itemSelector: 'div.pmason',
columnWidth: 320
});
}(jQuery));
$container.infinitescroll({
navSelector : '.pager', // selector for the paged navigation
nextSelector : '.pager-next a', // selector for the NEXT link (to page 2)
itemSelector : '.blog-list .node', // selector for all items you'll retrieve
animate : true,
loading: {
finishedMsg: 'No more pages to load.',
}
},
// 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 );
});
}
);
})(jQuery);
</script>
编辑:这是CSS
.blist .pmason { width:319px; margin-right:1px; margin-bottom:1px; background:#FFF !important;}
.blist .last { margin-bottom:1px !important; margin-right:1px !important; }
.blog-thumbs-animate { position:relative !important; }
.blist .bhover { opacity:0; background:#f4f4f4; width:319px; position:absolute; bottom:0; left:0; height:100% !important; }
.bhover .inside { padding:20px; }
任何人都可以帮忙吗?
谢谢!