7 lines
246 B
JavaScript
7 lines
246 B
JavaScript
export function fontSize(res) {
|
|
const clientWidth = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth
|
|
if (!clientWidth) return
|
|
const fontSize = 100 * (clientWidth / 1920)
|
|
return res * fontSize
|
|
}
|