在iOS中打开键盘时,离子含量的背景图像会向上移动。我该如何阻止?
我正在使用电容器而不是科尔多瓦。

ios - 在Ionic iOS应用中打开键盘可将背景图像向上移动-LMLPHP

ios - 在Ionic iOS应用中打开键盘可将背景图像向上移动-LMLPHP

<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" />

最佳答案

对于iOS,将其添加到capacitor.config.json

{
  "plugins": {
    "Keyboard": {
      "resize": "body",
      "style": "dark"
    }
  }
}


在此处查看文档:https://capacitor.ionicframework.com/docs/apis/keyboard

对于Android:
将此添加到AndroidManifest.xml:

<activity android:windowSoftInputMode="adjustPan" />

08-19 17:42