zx-image-viewer
Version:
23 lines (21 loc) • 369 B
JavaScript
/**
* Created by capricorncd 9/9/2018
* https://github.com/capricorncd
*/
/**
* WindowSize
*/
export default class WinSize {
constructor () {
this.width = 0
this.height = 0
this.init()
window.addEventListener('resize', _ => {
this.init()
})
}
init () {
this.width = window.innerWidth
this.height = window.innerHeight
}
}