dashboard
repositories
filestore
activity
search
login
ztzh
/
zttj-h5
中图智慧H5
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
'未授权返回登录页面
15179599649
2023-12-18
03bd4b0ea7f680e3e8b15f45aa6a366b6ce5fa6c
[ztzh/zttj-h5.git]
/
src
/
utils
/
fontSize.js
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
}