在iOS中打开键盘时,离子含量的背景图像会上移。我该如何阻止呢? 我使用的不是Capova电容器。
<ion-content>
<div class="content">
.content {
width: 100%;
height: 100%;
padding: 0;
position: relative;
background: url("./../../../assets/img/login-bg.jpg") no-repeat fixed center;
background-size: cover !important;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: left;
}
我已经在AndroidManifest.xml中找到了适用于Android的解决方案:
<activity android:windowSoftInputMode="adjustPan" />
答案 0 :(得分:0)
对于iOS,将其添加到电容器.config.json
{
"plugins": {
"Keyboard": {
"resize": "body",
"style": "dark"
}
}
}
在此处查看文档:{{3}}
对于Android: 将此添加到AndroidManifest.xml:
<activity android:windowSoftInputMode="adjustPan" />