shuishen
2023-02-28 a1c2fecb75c9c8fef3345dee6d071faae6d3dccd
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
}