jquery 移动启动画面和 Safari 工具栏的隐藏
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的问题的答案实际上与 jQuery Mobile 无关。
要隐藏网址和页脚,您必须在移动网站上启用网络应用程序模式并将其添加到主屏幕,即安装它。
只需按照此处<的说明添加以下元标记即可< /a>:
为了让访问者更明显地知道他们必须安装您的网络应用程序,您可以添加 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:
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.