我正在使用jQuery来指导我的页面滚动并更改导航项目的颜色以对应您所在的部分。一切都运行良好,但脚本忽略了页面上的最后一部分(联系人)。
这主要基于Stack上的另一个问题,但我修改了代码以满足我的需求,然后遇到了问题。
测试地点: http://dev4.dhut.ch/
HTML:
<nav>
<ul>
<li class="active"><a href="#music" title="Music">MUSIC</a></li>
<li><a href="#photos" title="Photos">PHOTOS</a></li>
<li><a href="#lyrics" title="Lyrics">LYRICS</a></li>
<li><a href="#news" title="News">NEWS</a></li>
<li><a href="#info" title="Info">INFO</a></li>
<li><a href='#contact' title="Contact">CONTACT</a></li>
</ul>
<span></span>
</nav>
JavaScript的:
var $sections = $('section'),
$navs = $('nav > ul > li'),
topsArray = $sections.map(function(){
return $(this).position().top - 100;
}).get(),
len = topsArray.length,
currentIndex = 0,
getCurrent = function(top){
for(var i = 0; i < len; i++){
if(top > topsArray[i] && topsArray[i+1] && top < topsArray[i+1]){
return i;
}
}
};
$(document).scroll(function(e){
var scrollTop = $(this).scrollTop(),
checkIndex = getCurrent( scrollTop );
if( checkIndex !== currentIndex ){
currentIndex = checkIndex;
$navs.eq( currentIndex ).addClass('active').siblings('.active').removeClass('active');
}
});
答案 0 :(得分:0)
我认为以下问题出在问题所在:
if(top > topsArray[i] && topsArray[i+1] && top < topsArray[i+1]){
具体topsArray[i+1]
未定义i
的最后一次迭代。尝试将另外一个值推入topsArray,其中包括整个页面的高度。
topsArray = $sections.map(function(){
return $(this).position().top - 100;
}).get(),
topsArray.push(document.height);