2

phonegap 2.0 で Android アプリケーションを開発しています。Google Chrome で実行されるリップル アドオンを使用してアプリケーションをデバッグします。リップルではすべて問題ありませんが、アンドロイドでは問題ありません。Android では、背景画像が固定されません。私はグーグルでたくさんの検索を行いましたが、解決策が見つかりませんでした。

私のcssは:

background-image: url('../img/hdpi/App_Bg.png') !important;
background-repeat: no-repeat !important;
background-attachment: fixed !important;
background-size: 100% 100% !important;
background-position:100% 100% !important;

Android Webkit ブラウザーの背景画像を固定として設定するにはどうすればよいですか? 魔法の解決策はありますか?

4

1 に答える 1

0

これらのメタ タグを含めましたか?

<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no", ,height=device-height/>
<meta name="layout" content="mobile"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
于 2013-04-05T05:11:09.707 に答える