卸载移动设备上的jQuery鼠标跟绑定



我目前正在使用Brandon Aaron的"jQuery Mousewheel"脚本来反转页面的滚动方向。我是jQuery的新手,希望在移动设备上禁用此脚本/以获得<568px。

鼠标后跟的绑定操作如下:

$(document).ready(function() {
    $('#maincontain').mousewheel(function(e, delta) {
        this.scrollLeft -= (delta * 30);
        e.preventDefault();
    });
});

任何新手的帮助都将不胜感激。谢谢

如果你只想让它检测小屏幕:

if ($(window).width()>=568) { // or any number you like
   // load the mousewheel plugin
}

如果你真正想要的是检测触摸屏,那就有点复杂了,但你可以从这个开始:

if (!(('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch)) {
   // load the mousewheel plugin
}

最新更新