| 1234567891011121314151617181920 |
- /**
- * get the element's bounding size
- * @param ele dom element
- * @returns the element width and height
- */
- export function getContainerSize(ele) {
- if (!ele) {
- return { width: 0, height: 0 };
- }
- var style = getComputedStyle(ele);
- return {
- width: (ele.clientWidth || parseInt(style.width, 10)) -
- parseInt(style.paddingLeft, 10) -
- parseInt(style.paddingRight, 10),
- height: (ele.clientHeight || parseInt(style.height, 10)) -
- parseInt(style.paddingTop, 10) -
- parseInt(style.paddingBottom, 10),
- };
- }
- //# sourceMappingURL=dom.js.map
|