1. 程式人生 > >html rem動態計算

html rem動態計算

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; } } };