移动端px转化为rem

此知识点是在做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
原文地址:https://www.cnblogs.com/happybread/p/12161738.html