I have a web page with form Width of form is 320px. Form is centered. I need to fit this page for vertical and horizontal view. On vertical view all looks fine But on horisontal view form always on the left and width of my web page equals same width as on vertical page.
Here is my metatags:
<meta name = "viewport" content = "user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, width=device-width, height=430">
<meta name="apple-mobile-web-app-capable" content="yes"/>
Any advices?
UPD: solved
Solution:
Metatags:
<meta name = "viewport" content = "user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, width=device-width, height=430">
<meta name="apple-mobile-web-app-capable" content="yes"/>
JS:
<script type="text/javascript">
function updateOrientation(){
var contentType = "show_";
switch(window.orientation){
case 0: contentType += "normal"; break;
case -90: contentType += "right"; break;
case 90: contentType += "left"; break;
case 180: contentType += "flipped"; break;
}
document.getElementById("view_wrapper").setAttribute("class", contentType);
}
window.onload = function initialLoad(){
updateOrientation();
}
window.addEventListener("load", function() { setTimeout(loaded, 100) }, false);
function loaded(){ window.scrollTo(0, 1); }
</script>
And use different css for defferent orientations