Improve ui & performance
This commit is contained in:
12
app/src/components/helper/isElementInViewport.ts
Normal file
12
app/src/components/helper/isElementInViewport.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
declare const window: any
|
||||
declare const document: any
|
||||
|
||||
export function isElementInViewport(el: any) {
|
||||
const rect = el.getBoundingClientRect()
|
||||
return (
|
||||
rect.top >= 0 &&
|
||||
rect.left >= 0 &&
|
||||
rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) && /*or $(window).height() */
|
||||
rect.right <= (window.innerWidth || document.documentElement.clientWidth) /*or $(window).width() */
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user