使用jQuery touchwipe默认擦除一些擦除

时间:2011-05-27 18:37:09

标签: jquery iphone android touch touch-event

我正在使用这个精彩的插件来捕捉移动设备上的擦除事件: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");
        }
    });
});

我也愿意采用其他替代方法来实现同样的效果(其他插件,其他方法)。谢谢!

2 个答案:

答案 0 :(得分:12)

使用jquery.touchwipe库的这个小补丁:

if(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,
        fx: 'scrollHorz',
        next: '#next',
        prev: '#prev' 
    });

    $("#imagegallery").touchwipe({
        wipeLeft: function(e) {
            e.preventDefault();
            $("#imagegallery").cycle("next");
        },
        wipeRight: function(e) {
            e.preventDefault();
            $("#imagegallery").cycle("prev");
        },
        preventDefaultEvents: false
    });
});

(我已将补丁提交给插件作者。)

答案 1 :(得分:0)

我找到了一个部分有效的临时答案,可在此处找到:http://plugins.jquery.com/content/vertical-scroll

虽然能得到更好的答案会很好。