本地滚动效果锚定动画不起作用

时间:2016-08-02 08:03:29

标签: jquery wordpress

在我的wordpress网站上,我顺利滚动到锚点脚本的效果不如预期。它触发了警报"并滚动到页面但没有任何动画。

$(document).ready(function($){

/*------------------------------------*/
/* SMOOTH SCROLL */
/*------------------------------------*/
$('a[href^="#"]').on('click',function (e) {
    alert("Step 1");
    e.preventDefault();

    var target = this.hash,
    $target = $(target);

    $('html, body').stop().animate({
        'scrollTop': $target.offset().top
    }, 900, 'swing', function () {
        window.location.hash = target;
    });
});
});    

0 个答案:

没有答案