shuishen
2023-02-10 a66a9f47fe6ae37f347e081669b1ccb29bbbbdfd
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
}