小編給大家分享一下使用
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供詔安網(wǎng)站建設(shè)、詔安做網(wǎng)站、詔安網(wǎng)站設(shè)計、詔安網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、詔安企業(yè)網(wǎng)站模板建站服務(wù),十余年詔安做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
隨著網(wǎng)站頁面的出現(xiàn),使用滾動作為導(dǎo)航長頁面的方法變得越來越流行。使用JS + jQuery代碼,可以輕松地在nav元素中設(shè)置鏈接以滾動到頁面的相應(yīng)部分。如果你希望在JS不存在時很好地降級,請將錨標(biāo)記添加到頁面中,本篇文章就來給大家介紹關(guān)于使用
下面是具體的代碼
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代碼:
Welcome to this websiteAbout this website, and suchThe third section
看完了這篇文章,相信你對使用