25 lines
615 B
JavaScript
25 lines
615 B
JavaScript
export function getWidth() {
|
|
if (typeof window != "undefined") {
|
|
return Math.max(
|
|
document.body.scrollWidth,
|
|
document.documentElement.scrollWidth,
|
|
document.body.offsetWidth,
|
|
document.documentElement.offsetWidth,
|
|
document.documentElement.clientWidth
|
|
);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
export function getHeight() {
|
|
if (typeof window != "undefined") {
|
|
return Math.max(
|
|
document.body.scrollHeight,
|
|
document.documentElement.scrollHeight,
|
|
document.body.offsetHeight,
|
|
document.documentElement.offsetHeight,
|
|
document.documentElement.clientHeight
|
|
);
|
|
}
|
|
}
|