0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Angular】値によってCSSを切り替える

Posted at

書き方は二通り。

①ngClassを使う
②クラスバインディングを使う

<!-- ngClass -->
<p [ngClass]="{ 'font-on': fontFlag }">ngClass</p>
<!-- クラスバインディング -->
<p [class.font-on]="fontFlag">css works!</p>

<button (click)="changeClass()">色を変える</button>
p {
  color: black;
}
.font-on {
  color: red;
}
export class CssComponent implements OnInit {
  fontFlag = false;
  constructor() {}

  ngOnInit() {}

  changeClass() {
    this.fontFlag = !this.fontFlag;
  }
}

スクリーンショット 2020-07-28 13.50.22.png
ボタンを押すと色が変わります
スクリーンショット 2020-07-28 13.50.35.png

単純に2種類を切り替えたいだけならクラスバインディング、
複数種類使い分けたいときはngClassが便利そう

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?