How do I hide the address bar on iPhone?

前端 未结 11 936
情话喂你
情话喂你 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 12:59

    I think this version is actually better. It tests to see if the user has already begun scrolling, which is an issue I noticed in my mobile project.

    /Mobile/.test(navigator.userAgent) && !location.hash && setTimeout(function () {
        if (!pageYOffset) window.scrollTo(0, 1);
    }, 1000);
    

提交回复
热议问题