📅  最后修改于: 2022-03-11 15:02:50.988000             🧑  作者: Mango
// Get current width and height (does not change the variables automatically)
let width = window.innerWidth;
let height = window.innerHeight;
// Updates the variables every time the window resizes
window.addEventListener("resize", function(event) {
width = window.innerWidth;
height = window.innerHeight;
});