tengsx
2023-04-06 ae20e58e9ca06f75a94120c9d88923376f7df647
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
}