UNPKG

supercharged-slider

Version:

A super modular tiny slider library.

9 lines (6 loc) 239 B
const isElementVisible = (element: HTMLElement, offset = 200) => { const bounding = element.getBoundingClientRect(); return bounding.top >= 0 && bounding.bottom <= window.innerHeight + offset; }; export default isElementVisible;