初学jquery,多多指教
导航思路:
- 设定nav导航的类。
- 设定索引值。
- 点击导航内容,导航的索引和内容的索引一一对应。
- 点击导航栏,内容滑动一段距离。
监听:
1.滑动内容文档时,索引值变动。
2.导航对应的索引所在内容高亮。
下面是代码
<!--导航-->
$(document).ready(function() {
$(".nav_scroll_a").each(function() { //导航所对应的类
$(this).click(function() { //点击导航栏内容
var index = $(this).index() //获取索引值index
//找到对应内容的索引值,并滑动一定的高度
window.scrollTo(‘y‘, $(".nav_scroll:nth-of-type(" + (index + 1) + ")").offset().top - 100)
$(".nav_scroll_a").removeClass("active") //清除所有导航的激活属性
$(this).addClass("active") //点亮正在点击的导航
});
});
});
<!--滚动监听-->
$(document).ready(function() {
$(window).scroll(function() { //滑动事件
for(var i = 0; i < $(".nav_scroll_a").length; i++) { //遍历每一次的导航事件
if($(window).scrollTop() > $(".nav_scroll").eq(i).offset().top - 130) { //内容栏滑动
$(".nav_scroll_a").removeClass("active")
$(".nav_scroll_a").eq(i).addClass("active")
}
}
});
});