ant-design/components/_util/getScroll.tsx

18 lines
532 B
TypeScript
Raw Normal View History

2018-10-23 12:18:35 +08:00
export default function getScroll(target: HTMLElement | Window | null, top: boolean): number {
if (typeof window === 'undefined') {
return 0;
}
const prop = top ? 'pageYOffset' : 'pageXOffset';
const method = top ? 'scrollTop' : 'scrollLeft';
const isWindow = target === window;
2018-10-23 12:18:35 +08:00
let ret = isWindow ? (target as Window)[prop] : (target as HTMLElement)[method];
// ie6,7,8 standard mode
if (isWindow && typeof ret !== 'number') {
2018-10-23 12:18:35 +08:00
ret = (document.documentElement as HTMLElement)[method];
}
return ret;
}