guanqb
2023-03-20 bb0d7ffabc5306cc30002bd825f5f0885d2fe34c
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
}