Safari 移动版全屏

发布于 2024-11-10 12:44:58 字数 103 浏览 5 评论 0原文

我正在尝试在 iPhone Web 应用程序上设置全屏模式,我已阅读 Apple 关于 apple-mobile-web-app-capable 元标记的文档,但它不起作用,你能帮助我吗?谢谢

I'm trying to set the full screen mode on my iPhone Web App, I have read the Apple's documentation on apple-mobile-web-app-capable meta tag, but it doesn't work, can you help me? Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

好多鱼好多余 2024-11-17 12:44:58
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">

确保你按照巴拉克拉克提到的去做

值得一提的是,这些标签仅在应用保存时才有效
主屏幕并从那里启动

<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">

Make sure you do what Bala Clark mentioned

Its worth mentioning that these tags only work when the app is saved
the home screen and launched from there

安稳善良 2024-11-17 12:44:58

您还可以添加 JavaScript 函数:

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

You can also add a javascript function :

<body onload="setTimeout(function() { window.scrollTo(0, 1) }, 100);">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文