我已经开发了一个带有jQuery mobile的android的phonegap应用程序,最后我发现自己在移动应用程序前面有很棒的界面和页面之间非常糟糕的滑动,我尝试了所有类型的滑动'无''pop'...但是当我按下后退按钮时,同样的结果和特别的结果。如果没有解决方案,我将不得不制作没有jquery的java应用程序。
答案 0 :(得分:3)
我遇到了同样的错误:
$(document).bind("mobileinit", function(){
// Disable transitions between pages. Android performance in transitions is very poor.
$.mobile.defaultPageTransition = 'none'; //fade o slidefade
// Gets rid of the back problem
$.mobile.pushStateEnabled = false;
});
答案 1 :(得分:1)
$(document).bind('pageinit', function () {
$.mobile.defaultPageTransition = 'none';
});
我使用了这段代码,我的幻灯片非常完美,就像在" Java Application"
中一样