小编给大家分享一下使用<nav>链接滚动到页面相应部分的方法,希望大家阅读完这篇文章后大所收获,下面让我们一起去探讨吧!
随着网站页面的出现,使用滚动作为导航长页面的方法变得越来越流行。使用JS + jQuery代码,可以轻松地在nav元素中设置链接以滚动到页面的相应部分。如果你希望在JS不存在时很好地降级,请将锚标记添加到页面中,本篇文章就来给大家介绍关于使用<nav>链接滚动到页面相应部分。
下面是具体的代码
Coffeescript:
$("nav").find("a").click (e) -> e.preventDefault() section = $(this).attr "href" $("html, body").animate scrollTop: $(section).offset().top
或JS代码:
$("nav").find("a").click(function(e) { e.preventDefault(); var section = $(this).attr("href"); $("html, body").animate({ scrollTop: $(section).offset().top }); });
HTML代码:
<nav> <a href="#welcome">Welcome</a> <a href="#about">About</a> <a href="#section3">Section 3</a> </nav> <div id="welcome">Welcome to this website</div> <div id="about">About this website, and such</div> <div id="section3">The third section</div>
看完了这篇文章,相信你对使用<nav>链接滚动到页面相应部分的方法有了一定的了解,想了解更多相关知识,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。