guanqb
2023-01-30 9bc4dcfe0928011e4e986014a2bb5bf3b897e292
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
}