我正在使用angular 7,我想添加和删除动态添加的类
我有正在返回数字的api。
我想做的是当数字高/低时突出显示列框
较高的应用.changeGreen
和较低的应用.changeRed
有2种不同的类别
问题是,当有更大的数字并且已经应用了类时,css不会影响
即如果已经应用.changeGreen
并且数量增加,那么.changeGreen
类必须生效并突出显示框
组件文件:
getCounter() {
const endpoint1 = 'http://localhost:8080/counter';
this.http.get<number>(endpoint1)
.subscribe(data => {
if (data) {
if (this.test1.subs < data) {
this.test1['subs'] = data
this.test1['class'] = 'changeGreen'
} else if (this.test1.subs > data) {
this.test1['subs'] = data
this.test1['class'] = 'changeRed'
} else {
this.test1['subs'] = data
this.test1['class'] = ''
}
console.log(this.test1);
}
setTimeout(() => { this.getCounter(); }, 2000);
});
}
HTML文件:
<div class="row" style="font-size: 25px;color: black;">
<div class="col-md-3" [ngClass]="test1.class">
<div class="row">
<div class="col-md-5">
01. <img src="">
</div>
<div class="col-md-7">
Name <br>
<ng2-odometer [number]="test1.subs" [config]="{}"></ng2-odometer>
</div>
</div>
</div>
</div>
CSS文件:
@keyframes fadeInOutGreen {
0% {
background-color: white;
}
45% {
background-color: rgba(80, 240, 16, 0.7);
}
100% {
background-color: white;
}
}
@keyframes fadeInOutRed {
0% {
background-color: white;
}
45% {
background-color: rgba(240, 15, 15, 0.7);
}
100% {
background-color: white;
}
}
.changeGreen {
animation-name: fadeInOutGreen;
animation-delay: 0.2s;
animation-duration: 1.2s;
}
.changeRed {
animation-name: fadeInOutRed;
animation-delay: 0.2s;
animation-duration: 1.2s;
}
最佳答案
因此,如果我正确理解问题,则是当类名称.changeGreen
已经存在并且返回新的更高编号时,该类应该保留不变,但是您希望显示该类的效果吗?
如果是这种情况,您可以尝试在每次调用开始时清空该类,并根据数量从头开始应用它。我可以想到的另一种方法是检查该类是否已存在,然后在再次添加之前将其删除。
如果您可以提供从端点返回的json,也许我们可以重现该问题。