UNPKG

@shopify/polaris

Version:

Shopify’s product component library

8 lines (7 loc) 245 B
export function isElementInViewport(element) { const { top, left, bottom, right } = element.getBoundingClientRect(); return (top >= 0 && right <= window.innerWidth && bottom <= window.innerHeight && left >= 0); }