移动端rem匹配

Posted giser123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端rem匹配相关的知识,希望对你有一定的参考价值。

Rem是相对于根元素font-size大小的单位

记inphone5屏幕宽度是 320px font-size16px 1rem=16px

  1. <html>
  2.   <head>
  3.     <meta charset="utf-8">
  4.     <meta name="viewport" content="width=device-width,initial-scale=1.0">
  5.     <title>smiledemo</title>
  6.     <style>
  7.        .test{
  8.          width: 20rem;
  9.          height: 10rem;
  10.          background-color:bisque;
  11.          text-align: center;
  12.        }
  13.        .hello{
  14.          color: red;
  15.          font-size: 1rem;
  16.        }
  17.     </style>
  18.   </head>
  19.   <body>
  20.     <div id="app"></div>
  21.     <div class="test">
  22.        <p class="hello" >hello wangyawei</p>
  23.     </div>
  24.   </body>
  25. </html>

于是我们在js中写适配方案3行代码即可搞定

  1. <script>
  2.      let htmlwidth=document.documentElement.clientWidth||document.body.clientWidth;
  3.      console.log(htmlwidth);
  4.      let htmlDom=document.getElementsByTagName("html")[0];
  5.      //以imphone5的屏幕作为适配 320/16=20
  6.      htmlDom.style.fontSize=htmlwidth/20+"px";
  7.   </script>

可以看出完美适配,font-size变为了18.75px

以上是关于移动端rem匹配的主要内容,如果未能解决你的问题,请参考以下文章

移动端使用rem方法

移动端适配-px转成rem

前端移动端页面怎么用rem布局

Vue项目配置rem移动端适配

移动端使用rem同时适应安卓ios手机原理解析,移动端响应式开发

rem 移动端适配