1
shuishen
2022-12-30 fc4fa3c9db663e143cc7bdd46c9cf4e5d194718c
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
}