使用TouchSwipe插件在滑动手势上调用其他HTML文件(超链接)

时间:2013-05-09 16:51:00

标签: jquery html touch swipe swipe-gesture

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

所以我有一个div,TouchSwipe在哪里工作。在向左滑动时,我希望浏览器打开一个html文件,如超链接和向右滑动,另一个。

所以代码是这样的:

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

谢谢你们的建议和帮助!

1 个答案:

答案 0 :(得分: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");
});