我的网站底部有一个旋转木马滑块。现在,当我滚动到该滑块时,滑块向左和向右移动。我想禁用它。知道任何人如何禁用此功能吗?
答案 0 :(得分:2)
打开文件jquery.contencarousel.js并注释掉(或删除它)以下部分代码:
// adds events to the mouse
$el.bind('mousewheel.contentcarousel', function(e, delta) {
if(delta > 0) {
if( cache.isAnimating ) return false;
cache.isAnimating = true;
aux.navigate( -1, $el, $wrapper, settings, cache );
}
else {
if( cache.isAnimating ) return false;
cache.isAnimating = true;
aux.navigate( 1, $el, $wrapper, settings, cache );
}
return false;
});
这部分代码通过鼠标滚动来修改轮播中的幻灯片。
答案 1 :(得分:0)
如果你需要禁用滚动,你应该可以将它添加到你的CSS:
overflow-x: hidden; /* Horizontally */
overflow-y: hidden; /* Vertically */
overflow: hidden; /* Both ways */
答案 2 :(得分:0)
在你的jquery.mousewheel.js>注释类型事件“mousewheel”
53 //event.type = "mousewheel";