0
我試圖創造粘頭,當你滾動到一個div頭狀態變成固定的頂部,並保持在視圖中,當DIV已經走到了盡頭,並滾動出來的觀點我希望標題然後變得絕對,並留在其父母的底部。添加類元素時,在窗口
我已經得到了初步的部分唯一的工作我掙扎在其上添加「絕對」一流...
https://jsfiddle.net/yw313vf2/1/
function fixTitle() {
$('.service-pane').each(function() {
var $this = $(this);
var offset = $this.offset().top;
var scrollTop = $(window).scrollTop();
if (scrollTop > offset) {
$this.addClass('fixed');
} else {
$this.removeClass('fixed');
}
});
}
$(window).scroll(fixTitle);
$ this.addClass(「固定的絕對」); ? – Roy
我需要添加當父div有滾出視@Roy – Liam
添加絕對類什麼元素絕對一流? – Roy