简体   繁体   English

如何隐藏移动网络上的地址栏,如chrome或android浏览器?

[英]How to hide the address bar on a mobile web such as chrome or android browser?

I'm trying to make videojs full screen on the android devices when the user enter the URL. 当用户输入URL时,我正试图在android设备上全屏显示videojs。 However, the address bar is still there. 但是,地址栏仍然存在。 How can I hide it? 我怎么能隐藏它?

Try this... 尝试这个...

if(navigator.userAgent.match(/Android/i)){
    window.scrollTo(0,1);
}

This obviously has to be done on a load, see http://atlchris.com/1847/quick-tip-hide-mobile-web-browser-address-bar-improved/ 这显然必须在负载上完成,请参阅http://atlchris.com/1847/quick-tip-hide-mobile-web-browser-address-bar-improved/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM