5

私はイメージ ギャラリー [html5] に取り組んでおり、デスクトップ バージョンで問題なく動作しています。Ipad/タブレット デバイス用のタッチ ベースのイベントを追加したいと考えています。

javascript/jquery を使用してタッチ ベースのイベントを追加する方法を教えてください。

ありがとう、スリニバス

4

2 に答える 2

3

この jQuery プラグインはうまく機能します。http://www.netcu.de/jquery-touchwipe-iphone-ipad-library 使いやすい。元:

$('.slideshow').touchwipe({
 wipeLeft: function() {$('.slideshow').cycle('next');},
 wipeRight: function() { $('.slideshow').cycle('prev');},
 min_move_x: 60         
});
于 2013-03-26T03:05:10.273 に答える
3

この機能を使用できます

右スワイプまたは別の方向

// jquery mobile
    $("#id").swiperight(function() {
        //do some with $.mobile.changePage function
    });
    $("#id").swipeleft(function() {
        //do some $.mobile.changePage function
    });

// javascript
document.ontouchmove = function(e) {
    var target = e.currentTarget;
    while(target) {
        if(checkIfElementShouldScroll(target))
            return;
        target = target.parentNode;
    }

    e.preventDefault();
};
于 2013-03-22T09:10:13.513 に答える