UNPKG

10f-css-animations

Version:

Simple and fancy css animations for your projects

10 lines (9 loc) 331 B
export function isOnScreen(element) { const rect = element.getBoundingClientRect(); return ( rect.top >= 0 && rect.left >= 0 && rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) && rect.right <= (window.innerWidth || document.documentElement.clientWidth) ); }