使用jQuery和引導3我正在嘗試創建一個滾動網頁頁面。這裏是Working Demo。到目前爲止,它看起來罰款時,在像Section 1
到Section 2
或Section 2
到Section 3
序列用戶滾動,但我對nav navbar-nav
項目一些問題,當用戶滾動無序從Section 1
到Section 6
等。它看起來像每個項目nav navbar-nav
步驟獲得目標項目!(你可以在下面的圖片查看)滾動到部分的問題
還有另外一個重要的問題上Section 7
滾動。它不滾動到與其他部分相同的位置,並且有更多的空間。 (你可以在下面的圖片查看)
這裏是我用於滾動
<script>
$(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
}, 1000);
return false;
}
}
});
});
</script>
能否請你幫我解決的代碼,這些事情jQuery的?謝謝
感謝Preli,那麼解決方案是什麼? – user1760110