当前位置:首页 > 移动开发 > 正文

移动端px转化为rem

2024-03-31 移动开发

此知识点是在做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

温馨提示: 本文由Jm博客推荐,转载请保留链接: https://www.jmwww.net/yidong/11665.html