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

锚点跳转的过渡效果

时间:2016-03-24 13:00:09      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

 

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;
            }
        }
    });
});

  

锚点跳转的过渡效果

标签:

原文地址:http://www.cnblogs.com/dunitian/p/5314749.html

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