当前位置 : 主页 > 网页制作 > JQuery >

jQuery Smooth Scroll Offset

来源:互联网 收集:自由互联 发布时间:2021-06-15
我有以下jQuery代码 $(document).ready(function(){ $('a[href^="#"]').on('click',function (e) { e.preventDefault(); var target = this.hash, $target = $(target); $('html, body').stop().animate({ 'scrollTop': $target.offset().top }, 900, '
我有以下jQuery代码

$(document).ready(function(){
    $('a[href^="#"]').on('click',function (e) {
        e.preventDefault();

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

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

这是一个滚动插件,可以顺畅地向下滚动到页面中的内部链接.我想将学校偏移-140px,所以它不会向右滚动到DIV.

怎么能实现这一目标?

尝试…

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