JS页面锚点滑动

//主页面








JS


$(".common_scroll").click(function() {
var h=$($(this).attr("href")).offset().top;
    $("html, body").stop(true,false).animate({
      scrollTop: h +"px"
    }, {
    duration: 500,
      easing: "swing"
    });
    return false;
  });


你可能感兴趣的:(JS页面锚点滑动)