3

TouchSwipe プラグイン - http://labs.rampinteractive.co.uk/touchSwipe/demos/を見ていますが、スワイプ ジェスチャで他の HTML ファイルを呼び出すにはどうすればよいのでしょうか?

したがって、TouchSwipe が機能する div が 1 つあります。左にスワイプすると、ブラウザでハイパーリンクのような 1 つの html ファイルを開き、右にスワイプするともう 1 つの HTML ファイルを開くことができます。

したがって、コードは次のようになります。

$("#swipe").swipe({
    swipeLeft:function(event, direction, distance, duration, fingerCount) {
    }
});

アドバイスと助けてくれてありがとう!

4

1 に答える 1

1

1.html と 2.html の両方に id="swipe" があると仮定すると、これでうまくいくはずです。

// ------------
// 1.html.
// ------------

$("#swipe").bind("swipeleft",function(event) {
    $("#div").load( "2.html");
});

// ------------
// 2.html.
// ------------
$("#swipe").bind("swiperight",function(event) {
    $("#div").load( "1.html");
});
于 2013-05-09T17:04:32.857 に答える