Javascript实现页面滚动时导航智能定位
程序员文章站
2023-11-22 08:30:22
常见的开发页面中可能会有这么一个需求,页面中会有多个模块,每个模块对应一个导航,当页面滚动到某个模块时,对应的模块导航需要加上一个类用于区分当前用户所浏览区域。
假设结构...
常见的开发页面中可能会有这么一个需求,页面中会有多个模块,每个模块对应一个导航,当页面滚动到某个模块时,对应的模块导航需要加上一个类用于区分当前用户所浏览区域。
假设结构如下:
<div class="container"> <div class="wrapper"> <div class="section" id="section1">section1</div> <div class="section" id="section2">section2</div> <div class="section" id="section3">section3</div> <div class="section" id="section4">section4</div> <div class="section" id="section5">section5</div> </div> <nav> <a href="#section1" rel="external nofollow" class="current">section1</a> <a href="#section2" rel="external nofollow" >section2</a> <a href="#section3" rel="external nofollow" >section3</a> <a href="#section4" rel="external nofollow" >section4</a> <a href="#section5" rel="external nofollow" >section5</a> </nav> </div>
页面滚动时导航定位
js代码如下:
var $navs = $('nav a'), // 导航 $sections = $('.section'), // 模块 $window = $(window), navlength = $navs.length - 1; $window.on('scroll', function() { var scrolltop = $window.scrolltop(), len = navlength; for (; len > -1; len--) { var that = $sections.eq(len); if (scrolltop >= that.offset().top) { $navs.removeclass('current').eq(len).addclass('current'); break; } } });
效果如下:
不难看出,基本原理就是在window滚动的时候,依次将模块从后向前遍历,如果window的滚动高度大于或等于当前模块的距页面顶部的距离,则将当前模块对应的导航突出显示,并且不再继续遍历
点击导航定位页面
除了这种需求外,还有另一种需求,就是点击导航定位到导航所对应模块的顶部。
代码如下:
$navs.on('click', function(e) { e.preventdefault(); $('html, body').animate({ 'scrolltop': $($(this).attr('href')).offset().top }, 400); });
效果如下:
以上基本上满足了业务的基本需求,这是工作中总结的经验,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: JavaScript实现打地鼠小游戏
下一篇: javascript编写简易计算器
推荐阅读
-
Javascript实现页面滚动时导航智能定位
-
Javascript实现页面滚动时导航智能定位
-
javascript - wordpress侧边导航栏高度不够时随页面滚动是怎么实现的?
-
HTML页面滚动时获取离页面顶部的距离2种实现方法_javascript技巧
-
jQuery实现页面滚动时层智能浮动定位实例探讨_jquery
-
基于jquery实现页面滚动时顶部导航显示隐藏_jquery
-
HTML页面滚动时获取离页面顶部的距离2种实现方法_javascript技巧
-
js页面滚动时层智能浮动定位实现(jQuery/MooTools)_jquery
-
JS实现随页面滚动显示/隐藏窗口固定位置元素_javascript技巧
-
jQuery实现页面滚动时层智能浮动定位实例探讨_jquery