看看圖就明白了,中間綠色區域即爲安全區域。也就是說,適配安全區域也就是讓小程序或者H5的內容顯示在綠色區域部分。
css
小程序app.js文件中判斷獲取當前設備機型,若是是iphoneX系列機型,那麼設計到底部時,則考慮設置底部按鈕或選項卡的margin-bottom、padding-bottom、height等,或者添加一個div來佔位小黑條的位置。小程序
1 使用wx.getSystemInfoSync()中的screenHeight和safeArea對象的bottom屬性判斷
這裏使用screenHeight是獲取屏幕的高度,由於bottom是以屏幕左上角爲原點開始計算的,因此須要的是屏幕高度,對比screenHeight和safeArea,若是相等則說明不須要適配,不相等則須要適配。
`const isIPhoneX = () => {安全
let screenHeight = wx.getSystemInfoSync().screenHeight微信
let bottom = wx.getSystemInfoSync().safeArea.bottomapp
return screenHeight !== bottomiphone
}`函數
底部選項卡或吸底元素樣式判斷
<view class=" {{isIPhoneX ? 'marginB' : ''}}">底部選項卡或吸底元素</view>
flex
而env()和constant()函數有個必要的使用前提,H5網頁設置viewport-fit=cover的時候才生效,小程序裏的viewport-fit默認是cover設計
使用案列
下圖爲一個吸底元素,在iphoneX真機上小黑條會遮擋,大概長這樣
3d
解決方案
`.detailBotoom{
position: fixed;
bottom: 0;
width: 100%;
display: flex;
height: calc(96rpx+ constant(safe-area-inset-bottom));///兼容 IOS<11.2/
height: calc(96rpx + env(safe-area-inset-bottom));///兼容 IOS>11.2/
background: #fff;
border-top: 1rpx solid #eaeef1;
z-index: 99;
padding-bottom: constant(safe-area-inset-bottom);///兼容 IOS<11.2/
padding-bottom: env(safe-area-inset-bottom);///兼容 IOS>11.2/
}`