JQuery简单实现锚点链接的平滑滚动

$(function(){  
  $('a[href*=#],area[href*=#]').click(function() {
    if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {
      var $target = $(this.hash);
      $target = $target.length && $target || $('[name=' + this.hash.slice(1) + ']');
      if ($target.length) {
        var targetOffset = $target.offset().top;
        $('html,body').animate({
          scrollTop: targetOffset
        },
        500);
        return false;
      }
    }
  });
}) //sroll animation
赞 (0)

评论 0

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址