隨著一頁網站的出現,使用捲動作為導航長頁面的方法變得越來越流行。這一小部分是用JS jQuery程式碼實現的,您可以輕鬆地在nav元素中設定連結以滾動到頁面的相應部分。如果您希望在JS不存在時將錨標記新增至頁面。
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>
以上是如何使用