我遇到类似的问题:Software keyboard resizes background image on Android
这里给出的解决方案适用于Android开发。他们没有帮助。我正在寻找一般使用CSS / JavaScript的网站解决方案。
我目前的CSS:
#video_mob {
position: fixed;
background: url(../terminal/background.gif) no-repeat center center fixed;
background-size: cover;
-webkit-background-size: cover;
top: 0px;
left: 0px;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -1000;
overflow: hidden;
}
一种选择修复它,但背景实际上向上移动。
-webkit-background-size: 280% auto;
还有什么想法吗?欢迎CSS或JS解决方案。
答案 0 :(得分:2)
仅供参考,这是要求:
background: url(../terminal/background.gif) no-repeat center top fixed;
background-size: 280% auto;
必须将位置设置为居中顶部。