简体   繁体   English

android-如何在手机间隙android中为整个屏幕设置背景图像?

[英]how to set background image for complete screen in phone gap android?

in android version of phone gap background image is not fully covering the screen though having high resolution image 在Android版本的手机中,背景图片虽然具有高分辨率图片,但并未完全覆盖屏幕

body {
                background-image: url("../www/img/tracker_bg.jpg");
                background-size: cover;
                background-repeat: no-repeat;
      }

though using attachmend fixed and changed ever style to set background but for some screen it is not covering full screen as back ground 尽管使用Attachmend固定并更改了样式来设置背景,但是对于某些屏幕而言,它不能覆盖整个屏幕作为背景

You can try this CSS3 Code: 您可以尝试以下CSS3代码:

body{
    background: url(img/tracker_bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

Help From here 这里帮助

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM