| 1 2 3 4 5 6 7 8 9 | 171× 171× 171× | export default function getWindowSizes() {
const body = window.document.body;
const html = window.document.documentElement;
return {
height: Math.max(body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight),
width: Math.max(body.scrollWidth, body.offsetWidth, html.clientWidth, html.scrollWidth, html.offsetWidth),
};
}
|