zoukankan      html  css  js  c++  java
  • 页面自适应

     1 // 自适应
     2 function autoScreen(){
     3     var font_size = 40;
     4     var col_num = 640 / font_size;
     5     var adapterSize = window.innerWidth / col_num;
     6     var htmlElement = document.getElementsByTagName("html")[0];
     7     htmlElement.style.fontSize = '' + adapterSize + 'px';
     8     
     9     window.onresize=function (){
    10         adapterSize = window.innerWidth / col_num;
    11         htmlElement.style.fontSize = '' + adapterSize + 'px';
    12     }
    13 };
    14 autoScreen();
  • 相关阅读:
    poj 2251
    poj 1321
    poj 2777
    poj 3468
    poj 2318
    javascript
    buhui
    swift 构造器
    mac上不了网
    字体
  • 原文地址:https://www.cnblogs.com/muou2125/p/9491896.html
Copyright © 2011-2022 走看看