vue项目适配各个屏幕-px转rem
作者:
小鱼儿_逆流而上 | 来源:发表于
2021-08-25 16:35 被阅读0次
小鱼儿心语: 好好赚钱吧,没有钱,拿什么呵护你的亲情,支撑你的爱情,联络你的友情?靠嘴么?别闹了,大家都挺忙的!
vue项目中index.html
页面
- 100px = 1rem
- vue 各个组件中直接用即可
<script>
fnResize();
window.onresize = function () {
fnResize();
}
function fnResize() {
let designSize = 1920;
let html = document.documentElement;
let wW = html.clientWidth;
let rem = wW * 100 / designSize;
document.documentElement.style.fontSize = rem + 'px';
}
</script>
本文标题:vue项目适配各个屏幕-px转rem
本文链接:https://www.haomeiwen.com/subject/lxfeiltx.html
网友评论