zoukankan      html  css  js  c++  java
  • 移动端设置字体px转换rem的脚本

    (function (){
               var _self = this;
               _self.width = 640;//设置默认最大宽度
               _self.fontSize = 100;//默认字体大小
               _self.widthProportion = function(){var p = (document.body&&document.body.clientWidth||document.getElementsByTagName("html")[0].offsetWidth)/_self.width;return p>1?1:p<0?0:p;};
               _self.changePage = function(){
                   document.getElementsByTagName("html")[0].setAttribute("style","font-size:"+_self.widthProportion()*_self.fontSize+"px !important");
               }
               _self.changePage();
               window.addEventListener('resize',function(){_self.changePage();},false);
            })();
  • 相关阅读:
    case when if
    存储过程 、函数和事务
    poj 2263
    hdu -1874
    poj 2472
    2544 hdu
    模板floyed
    模板Dijkstra
    hdu 2066
    hdu 2544
  • 原文地址:https://www.cnblogs.com/lixiaoxing/p/6112383.html
Copyright © 2011-2022 走看看