Nat*_*han 7 css android 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%;
}
Run Code Online (Sandbox Code Playgroud)
无论如何,当我向下滚动时,背景会从屏幕顶部滚动,就像没有设置固定属性一样.
szm*_*gma 18
你试过这个吗?
html, body {
height: 100%;
}
html {
overflow-y: hidden;
}
body {
overflow-y: scroll;
background-color:#000000;
background-image:url('../img/bg_reader.jpg');
}
| 归档时间: |
|
| 查看次数: |
11982 次 |
| 最近记录: |