1
我有一個網頁插入「滾動到ID」和「粘滯菜單」jQuery腳本在它裏面。我遇到的問題是當我處於頁面頂部時,首先點擊菜單。它的頂部偏移量與其他點擊後的偏移量不同(當我不在頂部時)。 我寫了一個示例代碼。如果我不能說我的意思,我希望你能在樣本中找到它。
HTML:滾動到id腳本,如果我使用粘性菜單滾動窗口到錯誤的位置
<header>
<a href="#part1">Part1</a>
<a href="#part2">Part2</a>
<a href="#part3">Part3</a>
<a href="#part4">Part4</a>
<a href="#part5">Part5</a>
<a href="#part6">Part6</a>
</header>
<section id="part1" class="parts"><h1>Part 1</h1></section>
<section id="part2" class="parts silver"><h1>Part 2</h1></section>
<section id="part3" class="parts"><h1>Part 3</h1></section>
<section id="part4" class="parts silver"><h1>Part 4</h1></section>
<section id="part5" class="parts"><h1>Part 5</h1></section>
<section id="part6" class="parts silver"><h1>Part 6</h1></section>
CSS:
body { margin: 0 0 0 0 }
.parts{ height: 200px; border: 1px gray solid }
.silver { background : silver }
header { background: yellow; height:50px; line-height: 50px; width:100% }
.sticky { position: fixed; left: 0; top: 0; z-index: 2000; width:100% }
h1 { text-align:right }
的jQuery:
// This section is given from http://stackoverflow.com/questions/5284814/jquery-scroll-to-div
// Scroll to id 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 - 50
}, 1000);
return false;
}
}
});
});
// Sticky menu script
var stickyNavTop = $('header').offset().top;
var stickyNav = function(){
var scrollTop = $(window).scrollTop();
if (scrollTop > stickyNavTop) {
$('header').addClass('sticky');
} else {
$('header').removeClass('sticky');
}
};
stickyNav();
$(window).scroll(function() {
stickyNav();
});
請幫我解決這個問題。