首页 > webfront > SGML > html5 > > 正文

iphone x全屏导航自适配页面,css兼容iphone x

发布人:zhoulujun    点击:

iphonex在webview全屏的时候,导航栏会被 iphone的toolbar 遮住,其实也就两行css的事情,但是居然 用js处理,哎,只有默默地叹息。

iphonex在webview全屏的时候,导航栏会被 iphone的toolbar 遮住,网上的 兼容方案很多,一般css加两行代码即可。

    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);

或者媒体查询也行,

@media only screen
and (device-width : 375px)
and (device-height : 812px)
and (-webkit-device-pixel-ratio : 3) {
  //适配iphone x 的代码。
}

html 全屏覆盖

Add viewport-fit=cover to index.html:

    <meta name="viewport"
          content="initial-scale=1,maximum-scale=1,user-scalable=no,width=device-width,height=device-height, viewport-fit=cover">


2.jpg