-
-
Save piyushchauhan2011/a2c22876f36a04e39d63747f52b6f307 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| onScroll(ev){ | |
| const yOffset = window.window.pageYOffset; | |
| for(let elm of myElement){ | |
| elm.isVisible = yOffset >= elm.rect.top && yOffset <= (elm.rect.top + elm.rect.height); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment