自学内容网 自学内容网

uniapp 解决键盘弹出页面内容挤压问题

在这里插入图片描述
page.json 配置
加 “app-plus”: {
“softinputMode”: “adjustResize”
}

{
"path": "pages/jxx/xx",
"style": {
"navigationBarTitleText": "贺卡DIY",
"enablePullDownRefresh": false,
"app-plus": {
"softinputMode": "adjustResize"
}
}
},

背景图不要设置成高100%,实时监控窗口高度给背景图高赋值。

<view class="bgbg" :style="{height: screenHeight == 0 ? '100%':screenHeight+'px'}"></view>

created() {
this.screenHeight = uni.getSystemInfoSync().windowHeight; 
},

ok完美解决。


原文地址:https://blog.csdn.net/qq_34716929/article/details/135848162

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!