描述问题现象:iphoneX以上型号的手机 底部导航栏被黑线遮挡 影响用户体验
解决过程:
<div id="app" :class="{ isIphoneX: isIphoneX }"></div>
data() {
return {
isIphoneX :true
}
}
mounted(){
if (
/iphone/gi.test(navigator.userAgent) &&
((screen.height == 812 && screen.width == 375) ||
(screen.height == 896 && screen.width == 414))
) {
//是iphoneX
this.isIphoneX = true;
} else {
this.isIphoneX = false;
}
}
style样式:
最外层元素 &.isIphoneX {
height: calc(100vh - 35px) !important;
}
获取到底部导航栏的class
.van-tabbar--fixed {
position: absolute !important;
}
解决

针对iPhoneX及以上型号手机出现底部导航栏被黑线遮挡的问题,通过修改style样式,定位并调整相关class,成功解决了用户体验问题。
1307

被折叠的 条评论
为什么被折叠?



