0
我試圖在學校項目的網站上設置粘滯導航欄。這裏:http://www.divisionforty.com/aloevera/Navbar固定到頂部沒有內容根據
我不想讓它下面的內容,我的意思是,當它滾動內容坐在它下面就好像它是絕對定位。
希望有人能幫助,
丹佛
我試圖在學校項目的網站上設置粘滯導航欄。這裏:http://www.divisionforty.com/aloevera/Navbar固定到頂部沒有內容根據
我不想讓它下面的內容,我的意思是,當它滾動內容坐在它下面就好像它是絕對定位。
希望有人能幫助,
丹佛
給padding-top
到.wrapper
類。如果您不想隱藏navbar
下的內容,則可以提供padding-top:100px
。請參閱this示例。
更新:
請給.offset().top -100
100是在你的JavaScript導航欄的高度如下:
$("#circlediv").click(function() {
$('html, body').animate({
scrollTop: $("#benefits").offset().top-100
}, 2000);
});
和
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top - 100
}, 1000);
return false;
}
}
});
});
似乎並沒有做任何事情: ( – Denver
你是否試圖避免在navbar下隱藏內容?如果是,請將padding-top設置爲body或.wrapper分類秒。 – Ravimallya
當你點擊其中一個導航選項時,它會滾動這個問題。 – Denver