使用Angular时,可以通过TypeScript动态地更改组件本身的CSS属性
总结
在尝试将Angular组件大小调整为窗口大小时,我发现官方的组件样式只提到可以通过“:host选择器来指定组件自身的CSS!”这样的内容,对于如何从TypeScript动态修改自己的CSS的步骤却不清楚。
我通过搜索得到的代码有时能正常工作,有时却不能,相当模糊。因此,我在这里记录下最终可行的方法作为备忘。
操作步骤
在组件中,通过使用HostBinding装饰器声明一个带有HostBinding装饰器的变量,并在要更改的CSS属性前加上style.,将其作为HostBinding装饰器的参数传递。然后,将值存储到声明的成员变量中,CSS属性将被替换为存储的值。因为只涉及height属性,所以选择什么类型存储值有些困惑,但是如果选择number类型,它将无法工作,而选择string类型并在末尾加上px,它可以正常工作,所以选择string类型比较稳妥。
import { Component, OnInit, HostBinding } from '@angular/core';
@Component({
selector: 'app-example',
templateUrl: './example.component.html',
styleUrls: ['./example.component.css']
})
export class ExampleComponent implements OnInit {
@HostBinding('style.height') height:string;//ここでstyle.<好きなプロパティ名>を指定するのが一番大事
constructor() {
let pxnum:number = window.innerHeight/2; //ここは入れたい数値を入れる。今回はウィンドウの高さの半分にした。
this.height = (pxnum).toString() + "px";//指定したプロパティに対応した変数を書き換えると、その場で新しいCSSが適用される。
}
ngOnInit() {
}
}
在我尝试进行投稿时注意到,我意识到只有将其视为block标签才能使其正常工作,因此请明确说明这一点。
p {
background-color:#0000ff;/*pタグと背景の差をわかりやすくする用*/
}
:host {
display:block;/*display:blockにしないとブロックタグとして使えるプロパティが適用されないので指定。position:fixedでも可。*/
background-color:#7f7f7f;/*描画をわかりやすくする用*/
}
之后,就是像使用”ng generate component”命令一样的操作。
版本信息
我使用的瀏覽器是 Firefox 65.0,npm 的版本是 3.5.2。
{
"name": "test2",
"version": "0.0.0",
"license": "MIT",
"angular-cli": {},
"scripts": {
"ng": "ng",
"start": "ng serve",
"test": "ng test",
"pree2e": "webdriver-manager update --standalone false --gecko false",
"e2e": "protractor"
},
"private": true,
"dependencies": {
"@angular/common": "^2.3.1",
"@angular/compiler": "^2.3.1",
"@angular/core": "^2.3.1",
"@angular/forms": "^2.3.1",
"@angular/http": "^2.3.1",
"@angular/platform-browser": "^2.3.1",
"@angular/platform-browser-dynamic": "^2.3.1",
"@angular/router": "^3.3.1",
"core-js": "^2.4.1",
"rxjs": "^5.0.1",
"ts-helpers": "^1.1.1",
"zone.js": "^0.7.2"
},
"devDependencies": {
"@angular/compiler-cli": "^2.3.1",
"@types/jasmine": "2.5.38",
"@types/node": "^6.0.42",
"angular-cli": "1.0.0-beta.28.3",
"codelyzer": "~2.0.0-beta.1",
"jasmine-core": "2.5.2",
"jasmine-spec-reporter": "2.5.0",
"karma": "1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-remap-istanbul": "^0.2.1",
"protractor": "~4.0.13",
"ts-node": "1.2.1",
"tslint": "^4.3.0",
"typescript": "~2.0.3"
}
}
{
"compilerOptions": {
"baseUrl": "",
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["es6", "dom"],
"mapRoot": "./",
"module": "es6",
"moduleResolution": "node",
"outDir": "../dist/out-tsc",
"sourceMap": true,
"target": "es5",
"typeRoots": [
"../node_modules/@types"
]
}
}