1
shuishen
2023-01-04 1485f5daeb46a3cc4bbf9abbb2a2a8cab44e2b2c
1
2
3
4
5
6
export function fontSize (size) {
    let clientHeight = window.screen.availHeight
    if (!clientHeight) return
    let fontSize = size / 1080 * clientHeight
    return fontSize
}