jQuery、jQuerymobile を使用する私の Phonegap アプリケーションでは、ページが IOS7 にロードされた後、ページの任意の部分をタップするとページが白くなり、すべてのコンテンツが消えます。これは Ipad4 Retina ディスプレイでのみ発生します。このページのすべての再レンダリング手法と translatez(0) onload を使用して修正しようとしましたが、何も機能しません。
これが私の画面です。画像は画像データ付きの画像タグです。内部の各 div の高さと幅は動的に計算されます。画像を含む各divがposition:relative
あり、スクロールに使用しています-webkit-overflow-scrolling:touch
width = window.innerWidth-20;
colWidth = Math.floor(width/3);
imgWidth = colWidth-75;
$("#div_all_subcategories_level2").css("width",width+"px");
$(".sw1").css("width",(colWidth-25)+"px").css("height",(colWidth-25)+"px");
$(".cls_img_subcat_l2").css("width",colWidth-25+"px").css("height",colWidth-25+"px");