我正在使用滑动选项卡 Jquery 插件,它具有鼠标滚轮滚动功能作为默认值。下面是我使用代码的参考网址。 http://mauriceaquilina.com/build/slidingtabs
现在我不需要鼠标滚轮滚动。我怎样才能禁用它?
我已经使用了以下代码。
mousewheel : false,
tabsScroll: false,
但即使安装了 JQuery MouseWheel 插件,它们也无法正常工作。有人可以帮忙吗?
我正在使用滑动选项卡 Jquery 插件,它具有鼠标滚轮滚动功能作为默认值。下面是我使用代码的参考网址。 http://mauriceaquilina.com/build/slidingtabs
现在我不需要鼠标滚轮滚动。我怎样才能禁用它?
我已经使用了以下代码。
mousewheel : false,
tabsScroll: false,
但即使安装了 JQuery MouseWheel 插件,它们也无法正常工作。有人可以帮忙吗?
我刚刚得到了解决方案。在 JQuery 文件中,我更新了下面的代码,现在我的鼠标滚轮被禁用了..
以前的 :
f.bind("mousewheel", function (a, b, c, e)
改成:
f.unbind("mousewheel", function (a, b, c, e)
这对我有用。上一个:
$container.bind('mousewheel', function(event, delta, deltaX, deltaY) {
if(delta > 0)
plugin.next();
else if(delta < 0)
plugin.prev();
return false;
});
更改为:
$container.unbind('mousewheel', function(event, delta, deltaX, deltaY) {
if(delta > 0)
plugin.next();
else if(delta < 0)
plugin.prev();
return false;
});
.ui-slider-tabs.panel {
pointer-events: none;
}
只需将 css 添加到主类.ui-slider-tabs.panel
pointer-event: none;
这在 Firefox 和 chrome 中对我有用