1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/src/frontend/app/model/page.helper.ts
2023-09-11 18:57:51 +02:00

53 lines
1.5 KiB
TypeScript

export class PageHelper {
private static readonly supportPageOffset = window.pageXOffset !== undefined;
private static readonly isCSS1Compat =
(document.compatMode || '') === 'CSS1Compat';
private static readonly body = document.getElementsByTagName('body')[0];
public static get ScrollY(): number {
return this.supportPageOffset
? window.pageYOffset
: this.isCSS1Compat
? document.documentElement.scrollTop
: document.body.scrollTop;
}
public static set ScrollY(value: number) {
window.scrollTo(this.ScrollX, value);
}
public static get MaxScrollY(): number {
return (
Math.max(
document.body.scrollHeight,
document.body.offsetHeight,
document.documentElement.clientHeight,
document.documentElement.scrollHeight,
document.documentElement.offsetHeight
) - window.innerHeight
);
}
public static get ScrollX(): number {
return this.supportPageOffset
? window.pageXOffset
: this.isCSS1Compat
? document.documentElement.scrollLeft
: document.body.scrollLeft;
}
public static showScrollY(): void {
PageHelper.body.style.overflowY = 'scroll';
}
public static isScrollYVisible(): boolean {
return PageHelper.body.style.overflowY === 'scroll' ||
(!PageHelper.body.style.overflowY && document.documentElement.scrollHeight > document.documentElement.clientHeight);
}
public static hideScrollY(): void {
PageHelper.body.style.overflowY = 'hidden';
}
}