base.css文件內(nèi)容
html?{
??font-size:?100px;
}
body?{
??font-size:?.12rem;
}
將除了base.css的body fontsize浓利,其余文檔的px改為rem嘉裤,
在public的index.html文件里面的head部分加上
<script>
??????//?cllientWidth是設(shè)備寬度
??????var?width?=?document.documentElement.cllientWidth?||?document.body
??????var?ratio?=?(width?/?375);//?375是當(dāng)前開發(fā)設(shè)備的寬度
??????var?fontSize?=?100?*?ratio;
??????document.getElementByIdTagName('html')[0].style['font-size']?=?fontSize?+?'px'
????</script>