hide mobile browser address bar on chrome (android)

后端 未结 3 829
后悔当初
后悔当初 2020-12-11 06:33

We have a site, where with a simple JavaScript


We hide the ad

3条回答
  •  一生所求
    2020-12-11 07:18

    I found the way how to hide address bar after first click

    if (document.body.webkitRequestFullScreen) {
      window.addEventListener('click', function(e) {
        if (e.target.type != 'text' && e.target.type != 'password') {
          body.webkitRequestFullScreen();
          window.setTimeout(function() {
            document.webkitCancelFullScreen();
          }, 500);
        }
      }, false);
    }
    

提交回复
热议问题