jQuery Mobile页面从左到右转换

时间:2012-12-13 04:36:20

标签: android jquery cordova jquery-mobile

我有一个android phonegap jquery应用程序。我正在使用“swipeleft”功能更改页面。

当我向左滑动时,我想显示下一页,然后向右滑动,我想显示上一页。

通过此代码,每件事情都运转良好。但

每次新页面都是从右到左。即在逻辑上我想显示上一页从左到右滑动。

以下是我正在使用的代码

$("html").delegate("body", "swipeleft", function() {
$.mobile.changePage("index.html", {
        transition : "slide"
    });
});
});

jQuerymobile中的任何代码,例如slideleft?

我尝试了很多......任何想法?

1 个答案:

答案 0 :(得分:1)

你试过reverse:true

$("html").delegate("body", "swipeleft", function() {
$.mobile.changePage("index.html", {
        transition : "slide"
        reverse:true
    });
});
});