如何使用HTML和CSS在Blackberry OS6 Torch设备中覆盖整个页面的背景图像

时间:2012-12-07 05:32:06

标签: html css blackberry blackberry-webworks

我正在使用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;
  }

1 个答案:

答案 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;
} 

您可以使用 - http://srobbin.com/jquery-plugins/backstretch/