【发布时间】:2021-01-09 05:58:39
【问题描述】:
目前我使用 NgZone 来运行媒体查询。我很好奇这是否是最好的方法。
import { NgZone } from '@angular/core';
const SMALL_WIDTH_BREAKPOINT = 840;
export class AppComponent implements OnInit {
private mediaMatcher: MediaQueryList = matchMedia(`(max-width: ${SMALL_WIDTH_BREAKPOINT}px)`);
constructor (
zone: NgZone,
) {
this.mediaMatcher.addListener(mql => zone.run(() => this.mediaMatcher = mql));
}
isScreenSmall(): boolean {
return this.mediaMatcher.matches;
}
}
【问题讨论】:
标签: angular media-queries responsive