【问题标题】:jQuery smooth scroll entire pagejQuery平滑滚动整个页面
【发布时间】:2015-07-10 01:05:54
【问题描述】:

有人知道如何使鼠标平滑滚动,比如这个页面吗? http://www.werkstatt.fr/#/project/dior-addict

我已经在网上搜索过,但找不到任何好的解决方案。

【问题讨论】:

    标签: jquery scroll smooth


    【解决方案1】:

    来自 Cymen 对堆栈溢出的回答,jquery vertical mousewheel smooth scrolling

    $(document).ready(function() {
        var page = $('#content');    
        $(window).mousewheel(function(event, delta, deltaX, deltaY){
            if (delta < 0) page.scrollTop(page.scrollTop() + 65);
            else if (delta > 0) page.scrollTop(page.scrollTop() - 65);
            return false;
        })
    });
    

    【讨论】:

    • thnx 回答,但它没有用......我在堆栈上的同一个问题中找到了对我有用的答案,这里是:areaaperta.com/nicescroll
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-05-20
    • 2020-09-05
    • 1970-01-01
    相关资源
    最近更新 更多