Created
February 23, 2021 15:04
-
-
Save borispoehland/41ba58d95cb58101c3c6791461a346f1 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
export const getTopY = (element: HTMLElement, downOffset: number): number => { | |
return element.getBoundingClientRect().top + window.pageYOffset - downOffset; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment