一些jquery經常使用方法

一、jquery實現平滑滾動到指定錨點

$(document).ready(function() {
  $("a.topLink").click(function() {
      $("html, body").animate({
         scrollTop: $($(this).attr("href")).offset().top + "px"
      }, {
      duration: 500,
      easing: "swing"
    });
    return false;
  });
});
相關文章
相關標籤/搜索