The values of meta viewport attribute are not reflected when in full screen mode in android chrome browser

前端 未结 2 622
长发绾君心
长发绾君心 2020-12-10 10:11

When I am in full screen mode in android using fullscreen api, the values of meta viewport attribute like initial-scale and user-scalable are not reflected in the browser. I

相关标签:
2条回答
  • 2020-12-10 10:51

    Unfortunately the answer is no, you cannot control how the meta viewport attribute is handled. "Full webpage and disabled zoom viewport meta tag for all mobile browsers" covers many Android and iOS versions in fullscreen. However, you can use a series of browser/ version detection to work around known bugs. It's not elegant, but given Android's fragmentation it might be necessary.

    0 讨论(0)
  • 2020-12-10 10:53

    I was able to go fullscreen by an alternative method using the web app manifest. It does not interfere with the meta viewport.

    Here are the steps

    1. Add this to the head section:
    <link rel="manifest" href="/manifest.json">
    
    1. Create a manifest file like the following:
     {
          "short_name": "App Name",
          "name": "Full app name",
          "icons": [
            {
              "src": "launcher-icon-4x.png",
              "sizes": "192x192",
              "type": "image/png"
            }
          ],
          "start_url": "/index.html",
          "display": "fullscreen",
          "orientation": "landscape"
      }
    

    The Google developers documentation to launch in fullscreen using a manifest is available here.

    The issue of fullscreen disabling the metaview port is raised here.

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