Skip to content

Instantly share code, notes, and snippets.

@lumixraku
Created September 11, 2020 16:28
Show Gist options
  • Save lumixraku/aa0a1afa914141198167dfc9a1f34aaa to your computer and use it in GitHub Desktop.
Save lumixraku/aa0a1afa914141198167dfc9a1f34aaa to your computer and use it in GitHub Desktop.
const getOffset = el => {
const {
top,
left
} = el.getBoundingClientRect()
const {
scrollTop,
scrollLeft
} = document.body
return {
top: top + scrollTop,
left: left + scrollLeft
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment