dashboard
repositories
filestore
activity
search
login
hbwri
/
bigScreen
湖北水利大屏
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
page 2 and 3
tengsx
2023-04-06
80eb2e8d0eb78caf0b5d369aba18f99ed1222b97
[hbwri/bigScreen.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
}