誰かが問題が何であるかを言うことができますか?最初にjQueryWaypoints(http://imakewebthings.github.com/jquery-waypoints/)をロードし、テキストの後に表示されるコードを含めました。ページを下にスクロールするときに画像にfadeIn効果が必要ですが、何も起こりません。このソリューションは、Stack Overflowで見つかりました-ユーザーがそのdivにスクロールすると、JQueryがdivをフェードインします 。これが、ソリューションを実行しようとしているリンクです-http://layot.prestatrend.com ありがとうございます。
// by default your element will be hidden
$('.ajax_block_product').hide();
// call waypoint plugin
$('.ajax_block_product').waypoint(function(event, direction) {
// do your fade in here
$(this).fadeIn();
}, {
offset: function() {
// The bottom of the element is in view
return $.waypoints('viewportHeight') - $(this).outerHeight();
}
});