0

我正在使用 phonegap 在黑莓中开发一个应用程序。我正在使用 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;
  }
4

1 回答 1

0

你可以使用它,它使用
CSS3 - 黑莓浏览器可以使用 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/

于 2012-12-07T06:12:25.720 回答