移动端 滚动隐藏浏览器地址栏和工具栏

2020-07-18  本文已影响0人  缺月楼

js实现自动隐藏

window.onload=function(){setTimeout(function() {window.scrollTo(0, 1)}, 0)}

原理:js模拟用户滚动,scrollTo.

meta

<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="browsermode" content="application">
<meta name="full-screen" content="yes" />
<meta name="x5-fullscreen" content="true" />
<meta name="x5-page-mode" content="app" />
<meta name="360-fullscreen" content="true" />

除了在uc下可以始终隐藏外,其他浏览器只要路由跳转隐藏就会失败。

js方案

上一篇下一篇

猜你喜欢

热点阅读