Iphone WebApp页脚工具栏

时间:2011-12-08 00:22:52

标签: android iphone html5 mobile iphone-standalone-web-app

我正在为移动设备创建一个网络应用程序,但是iphone中的页脚工具栏有问题,我只想隐藏或删除它,但我尝试没有结果。

我正在读苹果支持使用这样的元标记:

<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />

但是工具栏总是显示出来......

有没有办法隐藏它并制作一个“看起来像”的原生应用程序?

2 个答案:

答案 0 :(得分:1)

您必须在设备主屏幕中添加您的网站/网络应用。 Apple提供的元标记只有在主屏幕上有链接时才有效。

答案 1 :(得分:0)

尝试

#menu
{
    text-align:center;
    margin-top: 20px;
    height:100px;
    background-color:#000;
    width:100%;
    position:fixed;
    bottom:0;
} 

然后在你的部门调用它! 如果是网络应用程序。