shuishen
2024-12-18 47f59dd6d2e98ef7c8eddf432a23f1bcfa4fefce
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
}