3

使用鼠标滚轮插件,我有:

$('html, body').bind("mousewheel", function(objEvent, intDelta){
if (intDelta > 0 && $currentPage != 1){
    $currentPage--;
    $('html, body').animate({scrollTop:$("#page"+$currentPage).offset().top}, 2000);
}
else if (intDelta < 0 && $currentPage != 4){
    $currentPage++;
    $('html, body').animate({scrollTop:$("#page"+$currentPage).offset().top}, 2000);
}
});

效果很好,但是每当我滚动时,它会在执行动画之前先向上或向下滚动页面。有什么办法可以禁用它吗?谢谢!

4

1 回答 1

3

只需添加一个

return false;

在最后一个大括号之前。

$('html, body').bind("mousewheel", function(objEvent, intDelta){
if (intDelta > 0 && $currentPage != 1){
    $currentPage--;
    $('html, body').animate({scrollTop:$("#page"+$currentPage).offset().top}, 2000);
}
else if (intDelta < 0 && $currentPage != 4){
    $currentPage++;
    $('html, body').animate({scrollTop:$("#page"+$currentPage).offset().top}, 2000);
}
return false;
});

顺便说一句,您应该使用 .on() 而不是 .bind()

于 2012-04-06T19:25:27.947 回答