html rem动态计算

来源:互联网 发布:手机数据连接不能上网 编辑:程序博客网 时间:2024/04/29 04:58
function fixFontSize() {  var $html = $('html');  var remBase = $(window).width() / 10;  var fontSize = remBase;  while (true) {    var actualSize = parseInt( $html.css('font-size') );    if (actualSize > remBase && fontSize > 10) {      fontSize--;      $html.attr('style', 'font-size:' + fontSize + 'px!important');    } else {      break;    }  }};
0 0