Skip to content

Instantly share code, notes, and snippets.

@piyushchauhan2011
Forked from amcdnl/scrollHack.js
Created August 4, 2017 03:39
Show Gist options
  • Save piyushchauhan2011/a2c22876f36a04e39d63747f52b6f307 to your computer and use it in GitHub Desktop.
Save piyushchauhan2011/a2c22876f36a04e39d63747f52b6f307 to your computer and use it in GitHub Desktop.
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