7 lines
255 B
JavaScript
7 lines
255 B
JavaScript
|
export const elementIsVisibleInViewport = (el) => {
|
||
|
const { top, left, bottom, right } = el.getBoundingClientRect();
|
||
|
const { innerHeight, innerWidth } = window;
|
||
|
|
||
|
return top >= 0 && left >= 0 && bottom <= innerHeight && right <= innerWidth;
|
||
|
};
|