平滑滚动跳跃而不是滚动

Smooth Scroll Jumps Rather than Scroll

本文关键字:滚动 跳跃 平滑      更新时间:2023-09-26

我使用了平滑滚动插件它工作得很好,但只有2个其他链接,而不是另一个,请参阅这里的演示,

现场演示

它在行业和定价方面工作得很好,但在推荐中它只是跳到位置,而且固定导航也切断了部分。

<script>
$(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 - 130 // - 130px (nav-height)
        }, 900, 'swing', function () {
            // Replace this with something that can be easily parsed and used by your code
            window.location.hash = '3' + target;
        });
    });
});
</script>

这里我已经创建了一个jsfield,
jsfiddle.net/Thq62/

它工作得很好只是给链接添加了一个适当的id和哈希值