scrollToFixed を使用して、フッターが実際のフッターに到達するまでページの下部に固定され、その後停止するはずです。ただし、ページの下部までスクロールし、フッターとスナップを過ぎてフッターの上部に移動します。このバグが発生している理由はありますか? 実際のサイトへのリンクは次のとおりです: http://client.analog.la/ret5/
jQuery('#scroller').scrollToFixed({
bottom: 0,
limit: function() {
var limit = 0;
if (jQuery(window).height() > jQuery('#page').height()) {
jQuery('#colophon').css({'position':'fixed','bottom':'0'});
jQuery('#scroller').css({'position':'fixed','bottom':'40px'});
}else {
jQuery('#colophon').css({'position':'static'});
limit = jQuery('#scroller').offset().top + 40;
} return limit;
}
});