What does apple-mobile-web-app-status-bar-style do?

前端 未结 2 1005
野趣味
野趣味 2021-02-05 05:52

What does


do -- can some

相关标签:
2条回答
  • 2021-02-05 06:08

    It changes the top bar w/ the banner and carrier on it and makes it a translucent black.

    0 讨论(0)
  • 2021-02-05 06:11

    First, the apple-mobile-web-app-capable hint has to be set for that to even work. This hint causes a web application to run in full-screen mode: it removes the address bar and navigation buttons you get by default in Mobile Safari. The removed areas are highlighted in red here:

    apple mobile web app capable

    So, once an app is in full-screen mode (i.e. the user has added the website to their home page), you can also control the colour of the remaining thin status bar at the top of the page with apple-mobile-web-app-status-bar-style, highlighted in red here:

    apple mobile web app status bar style

    Per the docs:

    If content is set to default, the status bar appears normal. If set to black, the status bar has a black background. If set to black-translucent, the status bar is black and translucent. If set to default or black, the web content is displayed below the status bar. If set to black-translucent, the web content is displayed on the entire screen, partially obscured by the status bar.

    A couple of caveats:

    1. This only works on the first page you load; any navigation away to another page will make the address bar and navigation buttons reappear. So if you want this to work, you have to build a single page website (for multiple 'pages' consider an Ajax page loading approach such as that used in the jQuery Mobile framework).

    2. This only works when you arrive at the web page via an application shortcut icon; if you navigate to the website directly from within Mobile Safari it has no effect.

    0 讨论(0)
提交回复
热议问题