1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
$(function () { getRem(); window.onresize = function () { getRem(); }; })
function getRem() { var html = document.getElementsByTagName("html")[0]; var oWidth = document.body.clientWidth || document.documentElement.clientWidth; var fontSize = (oWidth / 750) * 16; if (fontSize > 16) { fontSize = 16; } html.style.fontSize = fontSize + "px";
}
function sm() { var psd = 750; var html = document.getElementsByTagName('html')[0]; var w = document.documentElement.clientWidth || document.body.clientWidth; html.style.fontSize = w / psd * 100 + "px"; }
if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) { sm(); $(window).resize(function () { sm(); }) } else { $("html").css("fontSize", ""); }
if ($(window).width() < 1201) { sm(); } else { $("html").css("fontSize", ""); }
$(window).resize(function () { if ($(window).width() < 1201) { sm(); } else { $("html").css("fontSize", ""); }
})
|