Skip to content

Instantly share code, notes, and snippets.

@huruji
Created April 9, 2018 14:55
Show Gist options
  • Save huruji/28268e35d0b07e035f275f3373839d19 to your computer and use it in GitHub Desktop.
Save huruji/28268e35d0b07e035f275f3373839d19 to your computer and use it in GitHub Desktop.
set fontsize of root for rem
(function(doc, win) {
var docEl = doc.documentElement,
resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize',
recalc = function() {
var clientWidth = docEl.clientWidth;
if (!clientWidth) return;
docEl.style.fontSize = 20 * (clientWidth / 320) + 'px';
};
if (!doc.addEventListener) return;
win.addEventListener(resizeEvt, recalc, false);
doc.addEventListener('DOMContentLoaded', recalc, false);
})(document, window);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment