码迷,mamicode.com
首页 > Web开发 > 详细

锚点平滑过渡 js

时间:2015-02-12 18:22:56      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:

$(function(){
 
$(‘a[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;
            }
        }
    });
});

锚点平滑过渡 js

标签:

原文地址:http://www.cnblogs.com/mengxiangqihang/p/4288500.html

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