锚点平滑滚动

====================================

1
2
3
4
5
6
7
8
9
10
11
12
13
  $(".navbar-item").on("click", "li > a", function(){
// 激活态
$(".navbar-item ul a").removeClass("active");
$(this).addClass("active");

var href = $(this).attr("href");
if (href.substring(href.length - 1) != "#") {
var pos = $(href).offset().top;
$("html,body").animate({scrollTop: pos}, 300);
return false;
}
});