VUE3学习大屏自适应的几种方法
1.自适屏幕,始终保持16:9
的比例(第一种方法)
<div class="content" :style="getAspectRatioStyle">
import { ref, onMounted, onBeforeUnmount, computed } from 'vue';
const contentWidth = ref(0);
const contentHeight = ref(0);
const calculateAspectRatio = () => {
const container = document.querySelector('.container');
// const containerWidth = container.offsetWidth;
const containerWidth: number = (<HTMLElement>container).offsetWidth;
// const containerHeight = container.offsetHeight;
const containerHeight: number = (<HTMLElement>container).offsetHeight;
const aspectRatio = 16 / 9; // 16:9 比例
const containerAspectRatio = containerWidth / containerHeight;
if (containerAspectRatio > aspectRatio) {
contentHeight.value = containerHeight;
contentWidth.value = Math.floor(containerHeight * aspectRatio);
contentWidth.value = containerWidth;
contentHeight.value = Math.floor(containerWidth / aspectRatio);
console.log('contentWidth',contentWidth.value)
console.log('contentHeight',contentHeight.value)
window.addEventListener('resize', calculateAspectRatio);
window.removeEventListener('resize', calculateAspectRatio);
const getAspectRatioStyle = computed(() => ({
width: `${contentWidth.value}px`,
height: `${contentHeight.value}px`,
2.使用CSS scale属性对大屏幕做自适应处理(第二种方法)
<div class="login-container">
<div class="login-main" ref="dataScreenRef"></div>
const dataScreenRef = ref(null);
// 首先要确定设计稿尺寸,默认是 1920 x 1080
// 如果浏览器的宽高比大于设计稿的宽高比,就取浏览器高度和设计稿高度之比
// 如果浏览器的宽高比小于设计稿的宽高比,就取浏览器宽度和设计稿宽度之比
const getScale = (w = width, h = height) => {
let ww = window.innerWidth / w;
let wh = window.innerHeight / h;
return ww < wh ? ww : wh;
if (dataScreenRef.value) {
dataScreenRef.value.style.transform = `scale(${getScale()}) translate(-50%, -50%)`;
// 初始化时为外层盒子加上缩放属性,防止刷新界面时就已经缩放
if (dataScreenRef.value) {
dataScreenRef.value.style.transform = `scale(${getScale()}) translate(-50%, -50%)`;
dataScreenRef.value.style.width = `${width}px`;
dataScreenRef.value.style.height = `${height}px`;
window.addEventListener("resize", resize);
<style scoped lang="scss">
3.使用rem(第三种方法)
(1)npm
下载插件,自动将px
单位转换成rem
单位
npm install postcss-px2rem
(2)在根目录src中新建util目录下新建rem.js等比适配文件
// 当前页面宽度相对于 1920宽的缩放比例,可根据自己需要修改。
const scale = document.documentElement.clientWidth / 1920
// 设置页面根节点字体大小(“Math.min(scale, 2)” 指最高放大比例为2,可根据实际业务需求调整)
document.documentElement.style.fontSize = baseSize * Math.min(scale, 2) + 'px'
window.onresize = function () {
(3)在main.js
中引入适配文件
import './util/rem'
(4)到vue.config.js
中配置插件
const px2rem = require('postcss-px2rem')
// 基准大小 baseSize,需要和rem.js中相同
// remUnit: 14 代表 1rem = 14px; 所以当你一个14px值时,它会自动转成 (14px/14)rem