移动端px转化为rem

时间:2022-02-15 18:20:33

此知识点是在做APP是所用的,项目所用技术(ionic5/angular8),仅供参考!

getRem(pWidth): void {  const htmlRoot = document.getElementsByTagName(‘html‘)[0];  const oWidth = document.body.clientWidth || document.documentElement.clientWidth;  htmlRoot.style.fontSize = oWidth / pWidth * 100 ‘px‘; } pWidth:代表设计稿的宽度 100px=1rem