我有一个项目使用jQm,Phonegap for Android app。我有页面转换的问题。更改页面时闪烁,我找到了很多解决方案,但没有任何工作
这些是我找到的解决方案
< meta name =“viewport”content =“width = device-width,user-scalable = no”/>
那么,我该怎么办?我使用phonegap 2.9.0,jQm 1.3.2,backboneJS,requireJS,jQuery 1.9并在Android 2.3.6上测试
答案 0 :(得分:0)
<script src="js/jquery-1.10.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).bind("mobileinit", function()
{
if (navigator.userAgent.indexOf("Android") != -1)
{
$.mobile.defaultPageTransition = 'none';
$.mobile.defaultDialogTransition = 'none';
}
});
</script>
<script src="js/jquery.mobile-1.3.2.min.js" type="text/javascript"></script>