angular2 [ngStyle] [ngClass]的用法

作者: 阿踏 | 来源:发表于2018-04-05 15:28 被阅读8次

1、ngStyle基本用法

<div [ngStyle]="{'background-color':'green'}"></<div>
判断添加
<div [ngStyle]="{'background-color':username === 'zxc' ? 'green' : 'red' }"></<div>

2、ngClass
第一个参数为类名称,第二个参数为boolean值,如果为true就添加第一个参数的类,基本用法

[ngClass]="{'text-success':true}"
判断
[ngClass]="{'text-success':username == 'zxc'}"
[ngClass]="{'text-success':index == 0}"

3、例子
循环显示的第一行添加text-danger样式,文字变红色

const arr = [1, 3, 4, 5, 6]
<ul>
    <li *ngFor="let item of arr, let i = index">
        <span [ngClass]="{'text-danger': i==0}">{{item}}</span>
    </li>
</ul>

相关文章

网友评论

    本文标题:angular2 [ngStyle] [ngClass]的用法

    本文链接:https://www.haomeiwen.com/subject/hnopfftx.html