Skip to content

Instantly share code, notes, and snippets.

@MeyCry
Last active July 22, 2019 12:38
Show Gist options
  • Save MeyCry/7b9d9164575a254aed5773baecf335e9 to your computer and use it in GitHub Desktop.
Save MeyCry/7b9d9164575a254aed5773baecf335e9 to your computer and use it in GitHub Desktop.
function getBoundingClientRect(el) {
return new Promise((res, rej) => {
requestAnimationFrame(() => {
res(el.getBoundingClientRect());
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment