guanqb
2023-02-02 87bc2ee400a4fe9312f81a31a2946a7b8a00fcc4
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
}