Rem实现移动端适配

时间:2018-05-15 18:53:32   收藏:0   阅读:232

移动端适配

常见适配方法

以上实现了一个简单的横排和竖排的响应

通过JS动态设置font-size:

//获取视窗宽度
    let htmlWidth = document.documentElement.clientWidth || document.body.clientWidth;
        console.log(htmlWidth);
    let htmlDom = document.getElementsByTagName(‘html‘)[0];
        htmlDom.style.fontSize = htmlWidth/10 + ‘px‘;
rem进阶

定义rem适配的函数及使用(sass语法)

  @function px2rem($px) {
      $rem:37.5px;//iphone6
      @return ($px / $rem) + rem;
  }
  .header{
      width:100%;
      height: px2rem(40px);
      background-color: red;
      padding-left: px2rem(23px);
   }

原文:https://www.cnblogs.com/yehui-mmd/p/9042264.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!