mousewheelプラグインを使用して、私は持っています:
$('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);
}
});
これは問題なく動作しますが、スクロールするたびに、アニメーションを実行する前に、最初にページを1ティック上または下にスクロールします。これを無効にする方法はありますか?ありがとう!