vue3 数据大屏实现屏幕自适应px转rem
数据大屏项目开发中,我们需要尽可能的适配不同分辨率的大屏,今天我们来介绍如何实现适配,这里适配的原理是,先将px转为rem然后适配rem就可以了。
pnpm i autoprefixer postcss postcss-loader postcss-pxtorem
main.js引入
import ‘./utils/flexible’
flexible.js代码
;(function (win, lib) {
const doc = win.document
const docEl = doc.documentElement //即文档的根元素
let metaEl = doc.querySelector('meta[name="viewport"]') //代表页面中用于控制视图和缩放的元数据标签。
const flexibleEl = doc.querySelector('meta[name="flexible"]') //代表页面中用于控制视图和缩放的元数据标签。
let dpr = 0 //设备像素比
let scale = 0 //缩放比例
let tid: any
const flexible = lib.flexible || (lib.flexible = {})
if (metaEl) {
console.warn('将根据已有的meta标签来设置缩放比例')
const match = metaEl.getAttribute('content')?.match(/initial\-scale=([\d\.]+)/)
if (match) {
scale = parseFloat(match[1])
dpr = parseInt(String(1 / scale))
}
} else if (flexibleEl) {
const content = flexibleEl.getAttribute('content')
if (content) {
const initialDpr = content.match(/initial\-dpr=([\d\.]+)/)
const maximumDpr = content.match(/maximum\-dpr=([\d\.]+)/)
if (initialDpr) {
dpr = parseFloat(initialDpr[1])
scale = parseFloat((1 / dpr).toFixed(2))
}
if (maximumDpr) {
dpr = parseFloat(maximumDpr[1])
scale = parseFloat((1 / dpr).toFixed(2))
}
}
}
if (!dpr && !scale) {
const isIPhone = win.navigator.userAgent.match(/iphone/gi)
const devicePixelRatio = win.devicePixelRatio
if (isIPhone) {
// iOS下,对于2和3的屏,用2倍的方案,其余的用1倍方案
if (devicePixelRatio >= 3 && (!dpr || dpr >= 3)) {
dpr = 3
} else if (devicePixelRatio >= 2 && (!dpr || dpr >= 2)) {
dpr = 2
} else {
dpr = 1
}
} else {
// 其他设备下,仍旧使用1倍的方案
dpr = 1
}
scale = 1 / dpr
}
docEl.setAttribute('data-dpr', String(dpr))
if (!metaEl) {
metaEl = doc.createElement('meta')
metaEl.setAttribute('name', 'viewport')
metaEl.setAttribute(
'content',
'initial-scale=' + scale + ', maximum-scale=' + scale + ', minimum-scale=' + scale + ', user-scalable=no',
)
if (docEl.firstElementChild) {
docEl.firstElementChild.appendChild(metaEl)
} else {
const wrap = doc.createElement('div')
wrap.appendChild(metaEl)
doc.write(wrap.innerHTML)
}
}
function refreshRem() {
let width = docEl.getBoundingClientRect().width
if (width / dpr > 540) {
// width = 540 * dpr; //获取屏幕宽度,如果宽度大于540,字体就不会放大了
width = width * dpr //获取屏幕宽度
}
const rem = width / 10 //缩放比例可以按实际来
docEl.style.fontSize = rem + 'px'
flexible.rem = win.rem = rem
}
win.addEventListener(
'resize',
function () {
clearTimeout(tid)
tid = setTimeout(refreshRem, 300)
},
false,
)
win.addEventListener(
'pageshow',
function (e) {
if (e.persisted) {
clearTimeout(tid)
tid = setTimeout(refreshRem, 300)
}
},
false,
)
if (doc.readyState === 'complete') {
doc.body.style.fontSize = 12 * dpr + 'px'
} else {
doc.addEventListener(
'DOMContentLoaded',
function () {
doc.body.style.fontSize = 12 * dpr + 'px'
},
false,
)
}
refreshRem()
flexible.dpr = win.dpr = dpr
flexible.refreshRem = refreshRem
flexible.rem2px = function (d: any) {
let val: any = parseFloat(d) * this.rem
if (typeof d === 'string' && d.match(/rem$/)) {
val += 'px'
}
return val
}
flexible.px2rem = function (d: any) {
let val: any = parseFloat(d) / this.rem
if (typeof d === 'string' && d.match(/px$/)) {
val += 'rem'
}
return val
}
})(window, window['lib'] || (window['lib'] = {}))
根目录创建postcss.config.cjs
module.exports = {
plugins: {
autoprefixer: {},
// flexible配置
"postcss-pxtorem": {
"rootValue": 192,// 设计稿宽度或者目前正常分辨率的1/10
selectorBlackList: [".ivu"],// 要忽略的选择器并保留为px。
minPixelValue: 2,// 设置要替换的最小像素值。
"propList": [
"*"
]// 需要做转化处理的属性,如`hight`、`width`、`margin`等,`*`表示全部
exclude: function(file) {
// 排除 src/view/home2 目录
return /src[\\/]view[\\/]home2/.test(file);
}
// exclude: ['node_modules'], // 排除 node_modules 目录下的文件
}
}
}