我刚刚用 ionic 5 创建了一个空白项目,并为内容添加了背景图像。之后我修改了 page.page.scss 文件以使标题透明,但它不起作用。
如果我只是为离子含量选择背景颜色,那就行了。
请帮我。
这是我的环境:
离子:
Ionic CLI : 6.11.0 (/usr/local/lib/node_modules/@ionic/cli)
Ionic Framework : @ionic/angular 5.3.1
@angular-devkit/build-angular : 0.901.12
@angular-devkit/schematics : 9.1.12
@angular/cli : 9.1.12
@ionic/angular-toolkit : 2.3.0
电容器:
Capacitor CLI : 2.4.0
@capacitor/core : 2.4.0
效用:
cordova-res : not installed
native-run : not installed
系统:
NodeJS : v14.7.0 (/usr/local/bin/node)
npm : 6.14.7
OS : macOS Catalina
这是页面 SCSS 代码:
// ion-content {--background: #f1453d !important;
// --color : #f1453d !important }
ion-content {
--background : none;
border:none;
background-image: url(../../assets/imgs/bckgrnd.jpg) ;
background-repeat: no-repeat;
background-attachment: scroll;
background-size:cover;
background-position:center bottom;
}
ion-toolbar {
--background: transparent !important;
--ion-color-base: transparent !important;
--border-color: transparent;
--background-color: transparent !important;
}
}
HTML 代码:
<ion-header [translucent]="true">
<ion-toolbar>
<ion-title>
Blank
</ion-title>
</ion-toolbar>
</ion-header>
<ion-content [fullscreen]="true">
<div id="container">
<strong>Ready to create an app?</strong>
<p>Start with Ionic <a target="_blank" rel="noopener noreferrer" href="https://ionicframework.com/docs/components">UI Components</a></p>
</div>
</ion-content>
图像中的结果:
因此,如果有人已经遇到过这个问题或解决方案,它将使我和我的应用免于许多麻烦。
谢谢你,再见