在 Angular 中,我们可以在设置组件元数据时通过 styles 或 styleUrls 属性,来设置组件的内联样式和外联样式。
import {Component, OnInit, Input, Output, EventEmitter} from '@angular/core';
@Component({
selector: 'app-simple-form',
template: `
...
`,
styles: [`
:host { margin: 10px; }
input:focus { font-weight: bold;}
` ]
}) export class SimpleFormComponent implements OnInit {
@Input() message: string;
@Output() update = new EventEmitter<{text: string}>();
ngOnInit() {}
}
上面示例中 :host 表示选择宿主元素,即 AppComponent 组件模板中的 app-simple-form 元素。
用过 AngularJS 1.x 的同学,对 ng-class 应该很熟悉,通过它我们能够根据条件,为元素动态的添加或移除对应的样式。在 Angular 中,对应的指令是 ngClass 。接下来我们来看一下,ngClass 指令的具体应用。
ngClass 指令接收一个对象字面量,对象的 key 是 CSS class 的名称,value 的值是 truthy/falsy 的值,表示是否应用该样式。
@Component({
selector: 'app-simple-form',
template: `
{
{message}}
`,
styles: [`
:host { margin: 10px; }
.mousedown { border: 2px solid green; }
input:focus { font-weight: bold; outline: none;}
` ]
}) export class SimpleFormComponent implements OnInit {
isMousedown: boolean; // ... }
<div [ngClass]="{bordered: false}">This is never bordereddiv>
<div [ngClass]="{bordered: true}">This is always bordereddiv>
<div [ngClass]="{bordered: isBordered}"> Using object literal. Border {
{ isBordered ? "ON" : "OFF" }} div>
<div[ngClass]="{'bordered-box': false}"> Class names contains dashes must use single quote div>
<div class="base" [ngClass]="['blue', 'round']"> This will always have a blue background and round corners div>
除了 ngClass 指令外,Angular 还为我们提供了 ngStyle 指令。
ngStyle 指令让我们可以方便得通过 Angular 表达式,设置 DOM 元素的 CSS 属性。
<div [ngStyle]="{color: 'white', 'background-color': 'blue'}"> Uses fixed white text on blue background div>
需要注意的是, background-color 需要使用单引号,而 color 不需要。这其中的原因是,ng-style 要求的参数是一个 Javascript 对象,color 是一个有效的 key,而 background-color 不是一个有效的 key ,所以需要添加 ''。
对于一些场合,我们也可以直接利用 Angular 属性绑定的语法,来快速设置元素的样式。
设置元素的背景颜色
<div [style.background-color="'yellow'"]> Use fixed yellow background div>
设置元素的字体大小
<div> <span [ngStyle]="{color: 'red'}" [style.font-size.px]="fontSize"> Red Text <