平滑滚动不工作jQuery

时间:2015-09-09 16:51:12

标签: javascript jquery html css

使用https://css-tricks.com/snippets/jquery/smooth-scrolling/中的代码以及我这样的代码无法弄清楚它为什么不起作用。

脚本:

$('a[href*=#]:not([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) {
         $('html,body').animate({
             scrollTop: target.offset().top
        }, 1000);
        return false;
    }
}
});

网站: www.soelite.net/layout/

任何想法可能是什么?该站点跳转到div容器但没有动画。

0 个答案:

没有答案