mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
aca2656721
* docs: 🎬 improve BackTop demo * fix Backtop not working in iframe * fix lint * fix ci * fix ci * ✅ add more test case * ✅ add more test cases * fix ci
28 lines
806 B
TypeScript
28 lines
806 B
TypeScript
export function isWindow(obj: any) {
|
|
return obj !== null && obj !== undefined && obj === obj.window;
|
|
}
|
|
|
|
export default function getScroll(
|
|
target: HTMLElement | Window | Document | null,
|
|
top: boolean,
|
|
): number {
|
|
if (typeof window === 'undefined') {
|
|
return 0;
|
|
}
|
|
const method = top ? 'scrollTop' : 'scrollLeft';
|
|
let result = 0;
|
|
if (isWindow(target)) {
|
|
result = (target as Window)[top ? 'pageYOffset' : 'pageXOffset'];
|
|
} else if (target instanceof Document) {
|
|
result = target.documentElement[method];
|
|
} else if (target) {
|
|
result = (target as HTMLElement)[method];
|
|
}
|
|
if (target && !isWindow(target) && typeof result !== 'number') {
|
|
result = ((target as HTMLElement).ownerDocument || (target as Document)).documentElement[
|
|
method
|
|
];
|
|
}
|
|
return result;
|
|
}
|