cssrem icon indicating copy to clipboard operation
cssrem copied to clipboard

rem

Open flashlizi opened this issue 10 years ago • 0 comments

;(function(){ var win = window, docElem = document.documentElement, timeoutId;

setRem(); docElem.setAttribute('data-dpr', win.devicePixelRatio); win.addEventListener('resize', delaySetRem, false); win.addEventListener('pageshow', function(e){ e.persisted && delaySetRem(); }, false);

function delaySetRem(){ clearTimeout(timeoutId); timeoutId = setTimeout(setRem, 300); }

function setRem(){ win.rem = docElem.getBoundingClientRect().width / 10; docElem.style.fontSize = win.rem + 'px'; } })();

flashlizi avatar Dec 22 '15 05:12 flashlizi