ale*_*ods 30
用(window:resize)="onResize($event)"听的全球性事件.您可以使用window,document或body作为目标.看到这个插件
@Component({
selector: 'my-app',
template: `
<div
class="square"
[style.width.px]="width"
[style.height.px]="height"
(window:resize)="onResize($event)"
></div>
`
})
export class App {
width = 100;
height = 100;
onResize(event) {
this.width += 100;
this.height += 100;
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
14435 次 |
| 最近记录: |