如何在ipod touch中隐藏URL栏

时间:2010-02-26 00:20:20

标签: iphone mobile-safari

我需要在加载网络应用程序时隐藏ipod touch中的URL栏,我尝试了在线找到的所有可能的解决方案,包括在这里找到的解决方案: http://www.iphonemicrosites.com/tutorials/how-to-hide-the-address-bar-in-mobilesafari/

并在CSS中设置min-height,但它仅适用于横向,在配置文件模式下,它只隐藏部分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" />

...

4 个答案:

答案 0 :(得分:7)

这对我有用:

<body onload="setTimeout(function() { window.scrollTo(0, 1) }, 100);">

答案 1 :(得分:2)

您的代码中有一些拼写错误。试试

<meta name="apple-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; maximum-scale=1.0;"/>

(我将“app”更改为“apple”,删除了一个额外的分号,并将“maximun”更改为“maximum”。)

答案 2 :(得分:1)

你试过iUI吗? http://code.google.com/p/iui/

您拥有的代码似乎只是为了使页面全屏显示,但我想知道您是否有特定原因不使用完整脚本。我有一次使用它,除了将脚本添加到页面之外我没有做任何其他事情。

答案 3 :(得分:1)

尝试确保网站内容的长度至少是窗口的高度。 Mobile Safari会向上推动导航栏,但不会在页面下方留下灰色的“空白”空间,因此如果页面很短,它只会隐藏部分导航栏。