码迷,mamicode.com
首页 > 其他好文 > 详细

jq实现页面中锚点滚动跳转

时间:2017-08-09 13:45:20      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:==   target   pre   amp   ace   host   offset   nim   top   

jq实现页面中锚点滚动跳转

$(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
        },
        1000);
        return false;
      }
    }
  });
})

完美!!

jq实现页面中锚点滚动跳转

标签:==   target   pre   amp   ace   host   offset   nim   top   

原文地址:http://www.cnblogs.com/Mr-W/p/7324812.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!