1
右側のサイドバーにスティッキーバナーを作成しようとしています http://lukich.co.nf/laestrella/ フッターの上の赤い線の数ピクセル前にストップポイントを定義する方法はわかりません。 誰かが助けてくれますか? スクリプトは:私が訪れたスティッキーdivとjquery with stop point
$(function(){ // document ready
if (!!$('#sticky').length) { // make sure "#sticky" element exists
var el = $('#sticky');
var stickyTop = $('#sticky').offset().top -100;
$(window).scroll(function(){ // scroll event
var windowTop = $(window).scrollTop();
if (stickyTop < windowTop){
el.css({ position: 'fixed', top: 50 });
}
else {
el.css('position','static');
}
});
}
});