我正在使用这个精彩的插件来捕获移动设备上的擦除事件:http://www.netcu.de/jquery-touchwipe-iphone-ipad-library
我正在使用该页面源代码中的代码来使我的图像库循环应用.但是,我的图库是屏幕的整个宽度.不幸的是,touchwipe似乎阻止了默认的上下擦除在页面上下滚动.有没有办法让它使用默认行为,除非指定了其他行为?
$(document).ready(function() {
$('#imagegallery').cycle({
timeout: 0,fx: 'scrollHorz',next: '#next',prev: '#prev'
});
$("#imagegallery").touchwipe({
wipeLeft: function() {
$("#imagegallery").cycle("next");
},wipeRight: function() {
$("#imagegallery").cycle("prev");
}
});
});
最佳答案
使用jquery.touchwipe库的这个小补丁:
原文链接:https://www.f2er.com/jquery/428333.htmlif(Math.abs(dx) >= config.min_move_x) {
cancelTouch();
if(dx > 0) {
- config.wipeLeft();
+ config.wipeLeft(e);
}
else {
- config.wipeRight();
+ config.wipeRight(e);
}
}
else if(Math.abs(dy) >= config.min_move_y) {
cancelTouch();
if(dy > 0) {
- config.wipeDown();
+ config.wipeDown(e);
}
else {
- config.wipeUp();
+ config.wipeUp(e);
}
}
然后,您可以更改代码以有选择地调用e.preventDefault():
$(document).ready(function() {
$('#imagegallery').cycle({
timeout: 0,prev: '#prev'
});
$("#imagegallery").touchwipe({
wipeLeft: function(e) {
e.preventDefault();
$("#imagegallery").cycle("next");
},wipeRight: function(e) {
e.preventDefault();
$("#imagegallery").cycle("prev");
},preventDefaultEvents: false
});
});
(我已将补丁提交给插件作者.)