我正在使用phonegap在Blackberry中开发应用程序。我正在使用jquery mobile1.2.0进行UI设计。问题是,在哪里给出背景图像以便它覆盖整个页面。发生的事情是,应用程序中的整个页面都没有覆盖图像,但我在浏览器中对整个页面都是一样的。为什么会这样或以任何其他方式发生我可以获取图像的页面?CSS我有背景图像的写作是:
.ui-mobile, .ui-mobile .ui-page {
background-image: url("images/img_bg.jpg") !important;
background-repeat: no-repeat !important;
background-size: 100% 100% !important;
}
答案 0 :(得分:0)
你可以使用它,它使用CSS3-
Blackberry浏览器可以使用CSS3支持 - http://caniuse.com/#feat=background-img-opts
.ui-mobile, .ui-mobile .ui-page {
background: url('"images/img_bg.jpg"') no-repeat center center fixed;
background-size: cover;
}
或