2019-02-16 11:44:25 -08:00

13 lines
313 B
JavaScript

/* global window */
// Get the bounding box of a DOMElement relative to the page
export function getBoundingBoxInPage(domElement) {
const bbox = domElement.getBoundingClientRect();
return {
x: window.scrollX + bbox.x,
y: window.scrollY + bbox.y,
width: bbox.width,
height: bbox.height
};
}