芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/thefirstcookout.com/canvas/src/js/Layout.js
export default class Layout { constructor() { this.onResize() this.bindEvents() } bindEvents() { window.addEventListener('resize', () => { this.onResize() }) } onResize() { this.isMobile = window.matchMedia('(max-width: 767px)').matches this.W = window.innerWidth this.H = window.innerHeight } }