解决JQuery Mobile切换页面白屏问题

JQuery Mobile(以下简称JQM)切换页面的白屏问题困扰了我好长时间,上网搜索也看到不少人都在为这个问题困扰着,Google搜索一下 "phonegap changepage white screen" 也看到了不少国外的朋友正在为这个问题困扰,也看到了不少人对这个问题的解决方法,但是试过了许多的方法之后,还是没有很满意的效果。

方法1:


.ui-page { -webkit-backface-visibility:hidden; }


方法2:

	$(document).bind("mobileinit",function(){ 
	  $.extend(  $.mobile , { 
	   defaultPageTransition:'none' 
	  }); 
	});



方法3:关闭硬件加速

<application 
	            android:label="@string/app_name0" 
	            android:allowClearUserData="false" 
	            android:icon="@drawable/logo" 
	            android:logo="@drawable/logo" 
	            android:name="com.xx.xx" 
	            android:hardwareAccelerated="false">



方法4:

location="target.html"

使用这种方法切换减慢,但效果最明显

原文地址:http://hua.219.me/posts/1272

你可能感兴趣的:(解决JQuery Mobile切换页面白屏问题)