這次帶給大家往組件標籤內加入樣式,往組件標籤內加入樣式的注意事項有哪些,以下就是實戰案例,一起來看一下。
方式一:使用@Component的host屬性
@Component({ selector : 'myComponent', host : { '[style.color]' : "'red'", '[style.background-color]' : 'backgroundColor' } }) class MyComponent { backgroundColor: string; constructor() { this.backgroundColor = 'blue'; } }
在在host設定中新增屬性,等同於標籤上綁定屬性的用法。
設定style:
'[style.color]': "'red'":注意red值雙引號裡還有一個單引號。
'[style.background-color]':'backgroundColor':這裡是引用了元件裡的變數backgroudColor。
這種方式的好處是可以在樣式上使用元件的變數。
設定class:
@Component({ selector : 'myComponent', host : { '[class.myclass]' : 'showMyClass' } }) class MyComponent { showMyClass = false; constructor() { } toggleMyClass() { this.showMyClass = !this.showMyClass; } }
方式二:在樣式裡使用:host選擇器
@Component({ selector : 'myComponent', styles : [` :host { color: red; background-color: blue; } `] }) class MyComponent {}
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦讀取:
以上是往組件標籤內新增樣式的詳細內容。更多資訊請關注PHP中文網其他相關文章!