我有 1 个 div,我想在其中有条件地设置此类的背景颜色属性。我正在使用boostrap 进度条,我只想使用下面的类,因为它包含一些进度条的自定义设置。
下面是我的div:
.statistics .progress-bar {
background-color: black;
border-radius: 10px;
line-height: 20px;
text-align: center;
transition: width 0.6s ease 0s;
width: 0;
}
<div class="statistics" ng-repeat="item in data">
<div class="progress-bar" role="progressbar" aria-valuenow="70"
aria-valuemin="0" aria-valuemax="100" ng-style="{'width' : ( item.statistics + '%' )}">
</div>
</div>
条件如下:
If statistics > 100
backgroundcolor=red;
else
backgroundcolor=black;