zhangxiao
2024-08-20 e47b788ff5f5c699c682999c95da17eb284ca21d
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * 获取真实像素大小
 * @param px 传入设计稿标注大小(iphone6为标准),如果是vant组件,请按照设计稿除以2,因为vant的根字体大小为37.5
 * @returns
 */
export default function getRealPx(px: number): number {
    let screenWidth = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
    if (screenWidth > 800) {
        screenWidth = 375;
    }
    return (screenWidth / 750) * px;
}