1920分辨率设计稿适配不同分辨率

function setRemFontSize() {
const remSize = window.innerWidth / 19.2;
document.querySelector('html').style.fontSize = remSize + 'px';
}
100px = 1rem

setRemFontSize();
window.addEventListener('resize', function () {
setTimeout(function () {
setRemFontSize();
}, 200);
});

你可能感兴趣的:(1920分辨率设计稿适配不同分辨率)