1
guanqb
2023-02-11 cf0f0e6b4d276df0a5d91c23dad438bf2e92fa1d
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
}