单模块自适应大小
1、npm 下载
"element-resize-detector": "^1.2.4"
2、页面引入
import elementResizeDetectorMaker from "element-resize-detector";
3、页面使用
<div id="fillInRem"></div>
mounted() {//实例被挂载后调用
let that = this;
that.erd = elementResizeDetectorMaker()
that.erd.listenTo(document.getElementById("fillInRem"), function (element) {
//监听div宽度变化
// let width = element.offsetWidth
// let height = element.offsetHeight
let width = window.innerWidth
let height = window.innerHeight
// console.log(width)
console.log(height)
that.$nextTick(function () {
let fontSize = height / 100 + 'px';
let html = document.documentElement;
html.style.fontSize = fontSize;
console.log('fontSize',html.style.fontSize)
})
})
},
destroyed() {
this.erd.uninstall(document.getElementById("fillInRem"))
},
4、比例自己算
5、样式
1px = 0.12484394506866417rem = 1/((window.innerHeight)/100)
<style lang="scss" scoped>
$remPx1:0.12484394506866417rem;
</style>
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· .NET周刊【3月第1期 2025-03-02】
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器