linwei
2026-08-08 8da4838cddf8ac6e4879fb817cdd529f9ab889f5
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
}