3

我正在查看 TouchSwipe 插件 - http://labs.rampinteractive.co.uk/touchSwipe/demos/我想知道如何在滑动手势上调用其他 HTML 文件?

所以我有一个 div,TouchSwipe 工作的地方。在向左滑动时,我希望浏览器打开一个 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 回答