移动端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

posted on 2020-01-07 15:20  平平淡淡summer  阅读(989)  评论(0编辑  收藏  举报

导航