css – 如何在角度应用程序中将类添加到父级?

前端之家收集整理的这篇文章主要介绍了css – 如何在角度应用程序中将类添加到父级?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有下一个HTML
// This is parent
<div class="some-class">
     // This is child
     <totalizer</totalizer>
</div>

如何改变孩子的父母风格(添加新课程)?

解决方法

您可以使用EventEmitter @Output()属性来指示父组件使用ngClass动态添加/删除css类.

在您的子累加器组件中,定义,

@Output() cssRefresh = new EventEmitter<boolean>();

//when you need to add/remove css emit an event out to the parent like this 
// (preferably in a method in this component),this.cssRefresh.emit(true); // or 'false' depending on add/remove

然后在父html中修改这个,

<div class="some-class" [ngClass]="{ 'dynamicClass1 dynamicClass2 dynamicClass3': addCss}">
     // This is child
     <totalizer (cssRefresh)=refreshCss($event)></totalizer>
</div>

在您的父组件内添加方法属性,

addCss = false; // set 'initial state' based on your needs

refreshCss(add: boolean) {
 this.addCss = add ? true : false;
}

有关ngClass here的更多信息.

原文链接:https://www.f2er.com/css/217527.html

猜你在找的CSS相关文章