I have a similar problem to this: Software keyboard resizes background image on Android
The solutions given there are for Android development. They don't help. I'm seeking a solution for websites in general using CSS/JavaScript.
My current 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;
}
One option sort of fixes it, but the background actually shifts itself upwards.
-webkit-background-size: 280% auto;
Any further ideas? CSS or JS solutions welcome.