锚点跳转的过渡效果

Posted 码道安邦

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了锚点跳转的过渡效果相关的知识,希望对你有一定的参考价值。

 

CSS实现:http://stackoverflow.com/questions/17631417/css-pure-css-scroll-animation

jq实现:

$(function () {
    $(‘a[href*=#],area[href*=#]‘).click(function () {
        console.log(this.pathname)
        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;
            }
        }
    });
});

  

以上是关于锚点跳转的过渡效果的主要内容,如果未能解决你的问题,请参考以下文章

页面锚点跳转的几种方式

锚点跳转滑动效果

jquery 在页面上根据ID定位(jQuery锚点跳转及相关操作) 经典

jquery 在页面上根据ID定位(jQuery锚点跳转及相关操作) 经典

我想要做一个锚点定位,从A页面跳到B页面的某个位置。

单击链接时禁用默认锚点跳转