-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHtml.ts
executable file
·31 lines (27 loc) · 1.03 KB
/
Html.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
export function getElementHeight(element: HTMLElement): number {
if (!element) {
return 0
}
const style = getComputedStyle(element)
const padding = Number.parseFloat(style.paddingBottom) + Number.parseFloat(style.paddingTop)
const margin = Number.parseFloat(style.marginBottom) + Number.parseFloat(style.marginTop)
return element.clientHeight + padding + margin
}
export function getElementWidth(element: HTMLElement): number {
if (!element) {
return 0
}
const style = getComputedStyle(element)
const padding = Number.parseFloat(style.paddingLeft) + Number.parseFloat(style.paddingRight)
const margin = Number.parseFloat(style.marginLeft) + Number.parseFloat(style.marginRight)
return element.clientWidth + padding + margin
}
export function isPxSize(width?: string): boolean {
return /^\d+px$/.test(width?.trim() ?? '')
}
export function isPercentageSize(width?: string): boolean {
return /^\d+%$/.test(width?.trim() ?? '')
}
export function asPxSize(value: number): string {
return `${value.toFixed(3)}px`
}