【发布时间】:2019-07-11 14:21:41
【问题描述】:
我想为 Ionic 4 应用程序(所有页面)设置背景图像。这在使用 Ionic 3 时非常简单,但同样的方法在这里不起作用。我阅读了 Ionic 4 的 theming,但找不到将图像设置为背景的方法。
如文档中所述,可以设置背景颜色并且效果很好。
:root {
--ion-background-color: linear-gradient(197deg, rgba(100,100,100,1) 0%, rgba(63,63,63,1) 13.5%, rgba(29,29,29,1) 33.33%, rgba(0,0,0,1) 100%) !important;
}
但是将图像设置为背景时,它没有响应,
:root {
--background: url('assets/imgs/appBg.png') no-repeat fixed center;
}
想知道在 Ionic 4 中设置图像背景的可能方法是什么。谢谢。
【问题讨论】:
标签: css ionic-framework ionic4