dashboard
repositories
filestore
activity
search
login
zhba
/
zhba_bigScreen_jc
智慧保安大屏 晋城版
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
second commit
guanqb
2024-01-02
432456dea4e9f370f76a42f7b341596012c3c38f
[zhba/zhba_bigScreen_jc.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
}