Мне нужно скрыть адресную строку в ipod touch при загрузке веб-приложения. Я перепробовал все возможные решения, найденные в Интернете, в том числе найденное здесь:
http://www.iphonemicrosites.com/tutorials/how-to-hide-the-address-bar-in-mobilesafari/
и установка минимальной высоты в CSS, но она работает только в альбомной ориентации, а в режиме профиля скрывает только часть панели URL, а не всю панель. У кого-нибудь есть идеи? Спасибо.
ниже мой код:
<meta name="app-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-touch-fullscreen" content="YES" />
<meta name="viewport" content="width=320;initial-scale=0.6666;;minimum-scale=0.6666; maximun-scale=1.0;"/>
<title>Test</title>
<script type="application/x-javascript">
addEventListener("load", function()
{
setTimeout(updateLayout, 0);
}, false);
var currentWidth = 0;
function updateLayout()
{
if (window.innerWidth != currentWidth)
{
currentWidth = window.innerWidth;
var orient = currentWidth == 320 ? "profile" : "landscape";
document.body.setAttribute("orient", orient);
setTimeout(function()
{
window.scrollTo(0, 1);
}, 100);
}
}
setInterval(updateLayout, 100);
</script>
<link media="only screen and (max-device-width: 320px)" href="style.css" rel="stylesheet" type="text/css" />
...