1
試圖在右側邊欄製作一個粘滯的橫幅 http://lukich.co.nf/laestrella/ 但無法弄清楚如何定義它的停止點在頁腳上方的紅色線之前的幾個像素。 有人可以幫忙嗎。 腳本:粘滯div與jquery與停止點
$(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');
}
});
}
});