『REM』手机屏幕适配

Posted anne_zhou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了『REM』手机屏幕适配相关的知识,希望对你有一定的参考价值。

function adapt(designWidth, rem2px){

  var d = window.document.createElement(‘div‘);

  d.style.width = ‘1rem‘;

  d.style.display = "none";

  var head = window.document.getElementsByTagName(‘head‘)[0];

  head.appendChild(d);

  var defaultFontSize = parseFloat(window.getComputedStyle(d, null).getPropertyValue(‘width‘));

  d.remove();

  document.documentElement.style.fontSize = window.innerWidth / designWidth * rem2px / defaultFontSize * 100 + ‘%‘;

  var st = document.createElement(‘style‘);

  var portrait = "@media screen and (min-width: "+window.innerWidth+"px) {html{font-size:"+((window.innerWidth/(designWidth/rem2px)/defaultFontSize)*100) +"%;}}";

  var landscape = "@media screen and (min-width: "+window.innerHeight+"px) {html{font-size:"+((window.innerHeight/(designWidth/rem2px)/defaultFontSize)*100) +"%;}}"

  st.innerHTML = portrait + landscape;

  head.appendChild(st);

  return defaultFontSize

};

var defaultFontSize = adapt(640, 100);

  转载地址:http://mp.weixin.qq.com/s/JIRN56acxvJgmzk1Fjj6LA

以上是关于『REM』手机屏幕适配的主要内容,如果未能解决你的问题,请参考以下文章

移动端适配

web app变革之rem(手机屏幕实现全适配)

Webpack实现将CSS中的px转换为rem

Webpack实现将CSS中的px转换为rem

了解真实的 rem 手机屏幕适配

web移动端屏幕适配方案