jQuery實現平滑滾動到指定錨點的方法

本文實例講述了jQuery實現平滑滾動到指定錨點的方法。
html代碼html

<a href="#section_07" class="topLink"></a>
            
<section class="section_07" id="section_07">

經過 a href使頁面跳轉至id爲section_07的頁面。
js代碼this

//錨點平滑滾動
    $("a.topLink").click(function() {
    $("html, body").animate({
      scrollTop: $($(this).attr("href")).offset().top + "px"
    }, {
      duration: 600,
      easing: "linear"
    });
    return false;
    });

我是新手,有不足的問題但願提出。
但願本文所述對你們的jQuery程序設計有所幫助。設計

相關文章
相關標籤/搜索