How do I hide the address bar on iPhone?

前端 未结 11 918
情话喂你
情话喂你 2020-12-02 12:37

How do I hide the address bar on iPhone?

I tried two different methods so far:

  • The scroll down one pixel trick with JavaScript on page load

11条回答
  •  無奈伤痛
    2020-12-02 13:14

    Unless something has changed in recent iOS versions, the scroll down trick is the only one that reliably works, I've had no issues with this version:

    /mobile/i.test(navigator.userAgent) && !location.hash && setTimeout(function() {
      window.scrollTo(0, 1);
    }, 1000);​
    

    I didn't care about any other mobile platform for this particular page though, it was redirecting based on agent...you may want to change the regex to check for iPhone specifically, e.g. replace /mobile/ with /iPhone/.

提交回复
热议问题