jquery 移动启动画面和 Safari 工具栏的隐藏

发布于 2024-10-28 11:00:49 字数 190 浏览 2 评论 0原文

jQuery Mobile 是否支持 iPhone 和 iPad 等的启动屏幕?我认为这应该是一个具有特定名称的 .png 放在根目录下?

另外:当网络应用程序放置在桌面/主屏幕上时,是否有办法隐藏 Safari 工具栏(网址/页脚)? jQTouch 可以做到这一点,但这在 jQuery Mobile 中并不是开箱即用的。

谢谢!

Does jQuery Mobile support splash screen for e.g. iPhone and iPad? I reckon this should be a .png with a specific name placed on root?

Also: is there a way to hide Safari toolbars (url/footer) when a web-app is placed on desktop/home screen? jQTouch does this, but this does not work out of the box in jQuery Mobile.

Thanks!

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

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

发布评论

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

评论(1

淡墨 2024-11-04 11:00:49

您的问题的答案实际上与 jQuery Mobile 无关。

要隐藏网址和页脚,您必须在移动网站上启用网络应用程序模式并将其添加到主屏幕,即安装它。

只需按照此处<的说明添加以下元标记即可< /a>:

<meta name="apple-mobile-web-app-capable" content="yes">

为了让访问者更明显地知道他们必须安装您的网络应用程序,您可以添加 Google 移动书签气泡

当您评论自己时,可以使用 apple-touch-startup-image 元标记添加启动屏幕。

但是,请注意,Web 应用程序模式完全禁用多任务处理,即每次用户从正在运行的应用程序中选择站点/Web 应用程序时都会重新加载,这对您来说可能无法接受。

The answer to your questions isn't really related to jQuery Mobile.

To hide the url and footer you must enable web app mode on your mobile web site and add it to the homescreen, i.e. install it.

Just add the following meta tag as described here:

<meta name="apple-mobile-web-app-capable" content="yes">

To make it more obvious for your visitors that they have to install your web app you can add the Google Mobile Bookmark Bubble.

The splash screen can be added with the apple-touch-startup-image meta tag as you commented your self.

However, be aware that web app mode totally disables multitasking, i.e. makes your site/web app reload each time the user choses it from the running apps, and that might not be acceptable for you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文