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

时间:2019-08-11 22:27:18

标签: ios ionic-framework capacitor

在iOS中打开键盘时,离子含量的背景图像会上移。我该如何阻止呢? 我使用的不是Capova电容器。

enter image description here

enter image description here

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

1 个答案:

答案 0 :(得分:0)

对于iOS,将其添加到电容器.config.json

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

在此处查看文档:{​​{3}}

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

<activity android:windowSoftInputMode="adjustPan" />