首页 > 移动平台 > 详细

移动端rem设置(部分安卓机型不兼容)

时间:2018-01-23 18:10:18      阅读:606      评论:0      收藏:0      [点我收藏+]
(function(win) {
      var doc = win.document;
      var docEl = doc.documentElement;
      var tid;
      function refreshRem() {
          var width = docEl.getBoundingClientRect().width;
          if (width > 640) { // 最大宽度
              width = 640;
          }
          var rem = width / 10; // 将屏幕宽度分成10份, 1份为1rem
          docEl.style.fontSize = rem + ‘px‘;
      }
      win.addEventListener(‘resize‘, function() {
          clearTimeout(tid);
          tid = setTimeout(refreshRem, 300);
      }, false);
      win.addEventListener(‘pageshow‘, function(e) {
          if (e.persisted) {
              clearTimeout(tid);
              tid = setTimeout(refreshRem, 300);
          }
      }, false);
      refreshRem();
      console.log(docEl.style.fontSize)
})(window);

 

移动端rem设置(部分安卓机型不兼容)

原文:https://www.cnblogs.com/gzh529/p/8336953.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!