【发布时间】:2014-10-22 11:53:38
【问题描述】:
更新:在下面回答!
我有一个针对 iPad 全屏优化的响应式网页。不过,自从升级到 iOS8 后,一个新的空栏开始出现在整页应用程序的底部。
我看到几个答案建议我在基本布局中添加一个元标记。我的是一个 AngularJS 应用程序,并且在 index.html 中添加了以下内容:
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<link href="assets/css/tapp2.css" rel="stylesheet">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
<link rel="shortcut icon" type="image/png" href="assets/img/favicon.png"/>
<link rel="apple-touch-icon" href="assets/img/favicon-150X150.png" sizes="150x150">
<link rel="apple-touch-icon" href="assets/img/favicon-72X72.png" sizes="72x72">
<link rel="apple-touch-icon" href="assets/img/favicon-76X76.png" sizes="76x76">
<link rel="apple-touch-icon" href="assets/img/favicon-144X144.png" sizes="144x144">
<link rel="apple-touch-icon" href="assets/img/favicon-152X152.png" sizes="152x152">
<link rel="apple-touch-icon" href="assets/img/favicon-114X114.png" sizes="114x114">
<link rel="apple-touch-icon" href="assets/img/favicon-114X114.png" sizes="120x120">
<link rel="apple-touch-icon" href="assets/img/favicon-57X57.png" sizes="57X57">
但是酒吧还在,我被困住了。我在这里遗漏了什么吗?
【问题讨论】:
标签: ipad ios8 fullscreen statusbar