Skip to content

Instantly share code, notes, and snippets.

@yashsharma04
Created August 28, 2020 08:30
Show Gist options
  • Save yashsharma04/30fb5c47de99b391793ecd8d4092ebcd to your computer and use it in GitHub Desktop.
Save yashsharma04/30fb5c47de99b391793ecd8d4092ebcd to your computer and use it in GitHub Desktop.
const paginationComp = document.querySelector(".footer-wrapper");
const ifInViewPort = isInViewport(paginationComp);
const scrollBar = document.getElementById("scroll-bar");
if (ifInViewPort) {
scrollBar.style.position = "static";
} else {
scrollBar.style.position = "fixed";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment