在设置背景图像并将其大小(background-size)设置为“ cover”或“ 100%100%”时,使用ionic-2,例如:
background: url("../../img/bg.jpeg");
background-repeat: no-repeat;
background-size: cover;
打开键盘后,将调整背景图像的大小,如何避免这种情况? (以便即使键盘缩小了内容,背景图像的大小也保持不变)
最佳答案
使用正确的方法嵌入全屏背景图像:
ion-content {
background: url(images/bg.jpg) no-repeat center center fixed;
background-size: cover;
}
关于android - IONIC2打开键盘时调整背景图像的大小,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39682450/