我在更改背景图片时遇到了麻烦,
html:
<ion-content padding class="arkaplan">
scss:
.arkaplan {
background-image: url("../../../www/img/arkaplan.jpg") no-repeat fixed center;
background-size: cover;
}
没有任何改变。
我检查了一些类似的主题,其中一些解决了这个问题:
background: url("../../../www/img/arkaplan.jpg") no-repeat fixed center;
但是那样,我在chrome中遇到了一个错误:
GET http://localhost:8100/www/img/arkaplan.jpg 404 (Not Found)
和黑色背景。但是,如果我将网址作为图片可以使用。所以基本上应用程序找不到我的文件,但是我的目录是正确的。
感谢您的支持。