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

jquery 监听所有锚点链接实现平滑移动

时间:2016-12-18 17:55:36      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:style   class   改变   ace   htm   his   href   hash   pre   

jquery 监听所有锚点链接实现平滑移动,地址栏上不会改变链接地址

    //监听所有锚点链接实现平滑移动
    $(‘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;
                //为提升用户体验,做出算法改进 start
                var clientHeight    =    document.body.clientHeight;    //浏览器可视高度
                targetOffset    =    targetOffset-(clientHeight/2)+100;
                //end
                $(‘html,body‘).stop(true).animate({
                    scrollTop: targetOffset
                },
                1000);
            return false;
            }
        }
    });

 

jquery 监听所有锚点链接实现平滑移动

标签:style   class   改变   ace   htm   his   href   hash   pre   

原文地址:http://www.cnblogs.com/phpyangbo/p/6194667.html

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