This repository has been archived on 2019-10-13. You can view files and clone it, but cannot push or open issues or pull requests.
2017-12-05 00:13:47 +01:00

24 lines
533 B
JavaScript

export default function simulateScroll(
element,
{ scrollTop, scrollLeft, delay }
) {
const scrollingElement = element === document.body
? document.scrollingElement || document.documentElement
: element;
const applyScroll = () => {
if (scrollTop !== undefined) {
scrollingElement.scrollTop = scrollTop;
}
if (scrollLeft !== undefined) {
scrollingElement.scrollLeft = scrollLeft;
}
};
if (delay !== undefined) {
setTimeout(applyScroll, delay);
} else {
applyScroll();
}
}