-
-
Save lmiller1990/a96c1ecf096c3c558fa102f0544e0822 to your computer and use it in GitHub Desktop.
This file contains 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
const getScrollPercentage = (startMarker: HTMLElement, endMarker: HTMLElement): number => { | |
const offsetFromTop = getPosRelativeToBody(startMarker) | |
const total = getPosRelativeToBody(endMarker) - offsetFromTop - window.innerHeight | |
const progress = (((window.scrollY - offsetFromTop) / total) * 100) | |
return progress | |
} | |
const getPosRelativeToBody = (el: HTMLElement): number => { | |
return Math.abs( | |
document.documentElement.getBoundingClientRect().top - el.getBoundingClientRect().top, | |
); | |
} | |
export { | |
getScrollPercentage | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment