我用 jQuery mobile 为 android 开发了一个 phonegap 应用程序,最后我发现自己在移动应用程序面前,界面很棒,页面之间的滑动非常糟糕,我尝试了所有类型的滑动 'none' 'pop' .... 但是同样的结果,尤其是当我按下后退按钮时。如果没有解决方案,我将不得不制作没有 jquery 的 java 应用程序。
user1650432
问问题
108 次
2 回答
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;
});
于 2012-09-28T12:31:32.073 回答
1
$(document).bind('pageinit', function () {
$.mobile.defaultPageTransition = 'none';
});
我使用了这段代码,我的幻灯片很完美,就像在“Java 应用程序”中一样
于 2012-09-28T02:10:40.657 回答