鼠标轮在jquery .animate中

时间:2014-04-02 08:03:14

标签: javascript jquery

我创建了一些JavaScript来向上和向下滚动我的DIV,它有溢出。我已经有一个上下按钮,可以正常使用这段代码,我想知道如何添加鼠标滚轮滚动,下面是我的代码:

var t = 0;

function MoveUp() {
    t += 665;
    if (t > 0) t = 0;
    $("#contents ").animate({
        top: t
    }, 1000, function () {
        // Animation complete.
    });
}

function MoveDown() {
    t -= 665;
    with($("#contents")) {
        //if(t < -clientHeight)
        //t = -clientHeight;
        if (t < -1330) t = -1330;
        $("#contents").animate({
            top: t
        }, 1000, function () {
            // Animation completed

        });
    }
}

1 个答案:

答案 0 :(得分:0)

使用此CSS启用页面滚动:

body{overflow:scroll;}

OR

滚动查看特定div:

.yourDivClass{overflow:scroll;}