何らかの理由で、無限スクロールでロードされた新しいコンテンツには適用されないホバー画像機能があります。
これはホバー機能です:
function hover_overlay_article() {
jQuery('a.thumblink, a.rating').each(function() {
jQuery(this).hover( function() {
$selector = jQuery(this).parent().children('a.thumblink').children('img');
$selector.stop().animate({opacity : .1}, 250, 'easeOutCubic');
}, function() {
$selector.stop().animate({opacity : 1}, 250, 'easeOutCubic');
});
});
}
hover_overlay_article();
そして、これは私の無限スクロールです:
<script>
var infinite_scroll = {
loading: {
img:"/_assets/images/ajax-loader.gif",
msgText: "",
finishedMsg: ""
},
"nextSelector":"a.next.page-numbers",
"navSelector":"div.pagination",
"itemSelector":"div.fullarticle",
"contentSelector":".articlecontainer"
};
jQuery( infinite_scroll.contentSelector ).infinitescroll( infinite_scroll );
</script>
誰かがこれを修正するのを手伝ってくれますか?
御時間ありがとうございます。