问题描述
我想让我的网路应用程式隐藏Chrome上的浏览器标签和地址栏。 document.documentElement.requestFullScreen()
似乎没有效果。 window.scroll(0,1)
无法在平板电脑上使用。
如果可能,我会也喜欢iOS和Chrome和Safari的优秀解决方案。
任何想法?我在Chrome 29上为Android。
解决方案我想让我的网路应用程式隐藏Chrome上的浏览器标签和地址栏。 document.documentElement.requestFullScreen()
似乎没有效果。 window.scroll(0,1)
无法在平板电脑上使用。
如果可能,我会也喜欢iOS和Chrome和Safari的优秀解决方案。
任何想法?我在Chrome 29上为Android。
解决方案检查此示例:
$ b 试着使用 webkitRequestFullscreen()
同时在 requestFullscreen()
中降低了S并将 document.webkitCancelFullScreen()
至 document.webkitExitFullscreen()
。更新浏览器兼容性评论。
通过
I would like to have my web app hide the browser tabs and address bar on Chrome on mobile. document.documentElement.requestFullScreen()
seems to have no effect. window.scroll(0,1)
doesn't work either on tablets.
If possible, I'd also love a good solution for Chrome and/or Safari on iOS.
Any ideas? I'm on Chrome 29 for Android.
Check this sample: here
try to use webkitRequestFullscreen()
Also "Lowercased the "S" in requestFullscreen()
and changed document.webkitCancelFullScreen()
to document.webkitExitFullscreen()
. Updated browser compatibility comment."viaLet-Your-Content-Do-the-Talking-Fullscreen-API
这篇关于Android版Chrome浏览器的全屏通过JavaScript(平板电脑)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!