ahooks
Version:
react hooks library
16 lines • 668 B
JavaScript
var getScrollTop = function (el) {
if (el === document || el === document.documentElement || el === document.body) {
return Math.max(window.pageYOffset, document.documentElement.scrollTop, document.body.scrollTop);
}
return el.scrollTop;
};
var getScrollHeight = function (el) {
return (el.scrollHeight ||
Math.max(document.documentElement.scrollHeight, document.body.scrollHeight));
};
var getClientHeight = function (el) {
return (el.clientHeight ||
Math.max(document.documentElement.clientHeight, document.body.clientHeight));
};
export { getScrollTop, getScrollHeight, getClientHeight };
//# sourceMappingURL=rect.js.map