后台附件:修复不在android / mobile上工作

时间:2013-07-15 22:21:46

标签: android css web cordova background-attachment

我正在开发一个cordova应用程序,我正在尝试获得固定的背景。不幸的是,它似乎没有工作,任何时候我向下滚动背景只是从页面的顶部。这是我用来做这个的CSS(我已经尝试过其他几种方式):

html {
    width:100%;
    height: 100%;
    background-color:#000000;
    background-image:url('../img/bg_reader.jpg');
    /*background-repeat:no-repeat;
    background-attachment: fixed;
    background-position: center;*/
    background-size: 100% 100%;
}

无论如何,当我向下滚动时,背景会从屏幕顶部滚动,就好像没有设置固定属性一样。

1 个答案:

答案 0 :(得分:18)

你试过这个吗?


    html, body {
        height: 100%;
    }
    html {
        overflow-y: hidden;
    }
    body {
        overflow-y: scroll;
        background-color:#000000;
        background-image:url('../img/bg_reader.jpg');
    }