Angular 如何在 [ngStyle] 和 class 上应用条件。如果条件为真 [ngStyle] 运行,否则 class 运行
Angular how may I apply condition on [ngStyle] and class. That if condition true [ngStyle] runs otherwise class runs
Component.Html
<div class="infoSection" [ngStyle]="FooterStyle"><br>
这里我有一个来自我的 Component.css 的 class(infoSection) 和来自 component.ts 的 [ngStyle]=FooterStyle 我想做一个条件
<div class="infoSection **(else Run this when Flag===0)**" [ngStyle]="FooterStyle **(RUN THIS IF Flag===1. I dont know the syntax)**"><br>
我口头把div标签里的条件写下来了。但是我不知道具体的语法怎么做
现在我正在编写来自 component.ts 的 FooterStyle 片段和来自 component.css
的 infoSection 片段
Component.ts
_Flag:any; //Flag Property
//This is Footer Object
FooterStyle={
'background-image':'',
'background-repeat':'no-repeat',
'background-size': 'cover',
'background-attachment': 'fixed',
'background-position': 'top',
}
//Function For Populating the FooterStyle Object with data coming from Backend
this._GeneralSettingsService.GetFooterImage().subscribe((docs:any)=>{
let _docs = docs.Result;
if(_docs){
this.FooterImageUrl = this.FooterImageFolderUrl + _docs[0].imageUrl;
this.FooterStyle['background-image'] = 'url('+this.FooterImageUrl+')';
this._Flag=1;
console.log(this._Flag);
}else{
this._Flag=0;
console.log(this._Flag);
}
})
Component.css
//infoSection snippet
.infoSection{
background-image: url('../../assets/images/tracey2.jpg');
background-size: cover;
background-attachment: fixed;
width:auto;
background-position: center;
}
提前致谢。
我相信之前有人问过这个问题,但这里是我将如何在 CSS class 和 Angular.[=11 的内联样式中实现条件=]
<div
[ngClass]="{'infoSection': Flag === 0}"
[ngStyle]="Flag === 1 ? FooterStyle : {}">
<br>
</div>
Component.Html
<div class="infoSection" [ngStyle]="FooterStyle"><br>
这里我有一个来自我的 Component.css 的 class(infoSection) 和来自 component.ts 的 [ngStyle]=FooterStyle 我想做一个条件
<div class="infoSection **(else Run this when Flag===0)**" [ngStyle]="FooterStyle **(RUN THIS IF Flag===1. I dont know the syntax)**"><br>
我口头把div标签里的条件写下来了。但是我不知道具体的语法怎么做
现在我正在编写来自 component.ts 的 FooterStyle 片段和来自 component.css
的 infoSection 片段 Component.ts
_Flag:any; //Flag Property
//This is Footer Object
FooterStyle={
'background-image':'',
'background-repeat':'no-repeat',
'background-size': 'cover',
'background-attachment': 'fixed',
'background-position': 'top',
}
//Function For Populating the FooterStyle Object with data coming from Backend
this._GeneralSettingsService.GetFooterImage().subscribe((docs:any)=>{
let _docs = docs.Result;
if(_docs){
this.FooterImageUrl = this.FooterImageFolderUrl + _docs[0].imageUrl;
this.FooterStyle['background-image'] = 'url('+this.FooterImageUrl+')';
this._Flag=1;
console.log(this._Flag);
}else{
this._Flag=0;
console.log(this._Flag);
}
})
Component.css
//infoSection snippet
.infoSection{
background-image: url('../../assets/images/tracey2.jpg');
background-size: cover;
background-attachment: fixed;
width:auto;
background-position: center;
}
提前致谢。
我相信之前有人问过这个问题,但这里是我将如何在 CSS class 和 Angular.[=11 的内联样式中实现条件=]
<div
[ngClass]="{'infoSection': Flag === 0}"
[ngStyle]="Flag === 1 ? FooterStyle : {}">
<br>
</div>