摘要:
1。head标签内引入 <script src="https://cdn.bootcss.com/vConsole/3.3.0/vconsole.min.js"></script> 2. 初始化 <script> window.ifShowVconsole = 'true' if (VConsole 阅读全文
摘要:
重绘和重排(回流) 重绘:给元素设置一些CSS样式,但不改变形状。比如说visibility、color、background-color、outline这些之类的就会触发重绘,重绘不会重新布局。重绘不一定重排。 重排:元素发生形状的变化,位置的变化,渲染树需要重新计算就会触发重排。像设置displ 阅读全文
摘要:
1 //该模块实现移动端rem布局 2 function remSize() { 3 let deviceWidth = document.documentElement.clientWidth || window.innerWidth //获取屏幕宽度 4 if (deviceWidth >= 7 阅读全文