在 BlackBerry OS6 上隐藏浏览器地址栏
我目前正在开发 HTML 5 移动网络应用程序。如果您将这样的应用程序添加到 iPhone 上的主屏幕,它看起来几乎就像一个本机应用程序,因为我能够隐藏移动 Safari 的地址栏。这可以通过在 HTML 代码中使用一些元标记来实现。
现在我想知道 Blackberry OS 6 上是否也可以隐藏地址栏?有谁知道是否以及如何实现这一目标?是否有黑莓特定的元标签?
I'm currently developing HTML 5 mobile web apps. If you add such an app to your homescreen on an iPhone, it pretty much looks like a native app since I am able to hide the mobile safari's address bar. This can be achieved by using some meta-tags within my HTML code.
Now I was wondering if hiding the address bar is also possible on the Blackberry OS 6? Does anyone have an idea if and how this could be achieved? Is there a Blackberry-specific meta-tag?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有适用于 BlackBerry 的元标记。
将内容加载到浏览器时尝试使用
window.scrollTo (0,1)
函数。There is no meta tag available for BlackBerry.
Try to use the
window.scrollTo (0,1)
function while loading the content into the browser.