3

我正在使用滑动选项卡 Jquery 插件,它具有鼠标滚轮滚动功能作为默认值。下面是我使用代码的参考网址。 http://mauriceaquilina.com/build/slidingtabs

现在我不需要鼠标滚轮滚动。我怎样才能禁用它?

我已经使用了以下代码。

mousewheel : false,
tabsScroll: false,

但即使安装了 JQuery MouseWheel 插件,它们也无法正常工作。有人可以帮忙吗?

4

3 回答 3

3

我刚刚得到了解决方案。在 JQuery 文件中,我更新了下面的代码,现在我的鼠标滚轮被禁用了..

以前的 :

f.bind("mousewheel", function (a, b, c, e)

改成:

f.unbind("mousewheel", function (a, b, c, e)
于 2013-07-24T05:44:49.420 回答
2

这对我有用。上一个: $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;
        });
于 2015-05-01T22:36:22.060 回答
0
.ui-slider-tabs.panel {
   pointer-events: none;
}

只需将 css 添加到主类.ui-slider-tabs.panel

pointer-event: none;

这在 Firefox 和 chrome 中对我有用

于 2016-05-04T12:41:16.653 回答