您现在的位置是:网站首页> 编程资料编程资料

CSS适配iPhone全面屏的方法CSS网页响应式布局实现自动适配Pc/Pad/Phone设备CSS像素以及移动端不同屏幕适配问题解决postcss-pxtorem移动端适配的实现css列表滑动防止被底部遮住和适配屏幕长一点的机型处理 CSS3中媒体查询结合rem布局适配手机屏幕手机端用rem+scss做适配的详解通过CSS3的object-fit来调整图片适配尺寸的技巧简介利用css @viewport 做设备适配

2023-10-18 385人已围观

简介 这篇文章主要介绍了CSS适配iPhone全面屏的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

一、media query方式

 /*iPhone X 适配*/ @media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) { .fixed-bottom{ bottom: 37px; } } /*iPhone XS max 适配*/ @media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio:3) { .fixed-bottom{ bottom: 37px; } } /*iPhone XR max 适配*/ @media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio:2) { .fixed-bottom{ bottom: 37px; } } 

存在的问题:在微信webveiw内部此方案能在元素底部加上安全区域宽度,没有问题。但是在safari等有底栏的浏览器(页面显示区域已经在安全区内部)也同样会加上安全区宽度。

二、CSS函数

苹果在推出全面屏之后提供的CSS函数,ios<11.2为constant(),ios>11.2为env()。可填入safe-area-inset-top、safe-area-inset-left、safe-area-inset-right、safe-area-inset-bottom对应上下左右的安全区域宽度。env 和 constant 只有在 viewport-fit=cover 时候才能生效。

代码如下:

meta标签加入viewport-fit=cover

css写法,不支持env、constant的浏览器会忽略此样式

 .fixed-bottom{ bottom: 0; bottom: constant(safe-area-inset-bottom); bottom: env(safe-area-inset-bottom); } 

此方案能解决方案一的问题,且代码更简洁

到此这篇关于CSS适配iPhone全面屏的方法的文章就介绍到这了,更多相关CSS适配iPhone全面屏内容请搜索以前的文章或继续浏览下面的相关文章,希望大家以后多多支持!

相关内容

-六神源码网