广告位联系
返回顶部
分享到

Vue屏幕自适应三种实现方法介绍

JavaScript 来源:互联网 作者:佚名 发布时间:2022-11-24 14:14:07 人浏览
摘要

使用 scale-box 组件 属性: width宽度 默认1920 height高度 默认1080 bgc背景颜色 默认transparent delay自适应缩放防抖延迟时间(ms) 默认100 vue2版本:vue2大屏适配缩放组件(vue2-scale-box - npm)

使用 scale-box 组件

属性:

  • width宽度 默认1920
  • height高度 默认1080
  • bgc背景颜色 默认"transparent"
  • delay自适应缩放防抖延迟时间(ms) 默认100

vue2版本:vue2大屏适配缩放组件(vue2-scale-box - npm)

npm install vue2-scale-box

或者

yarn add vue2-scale-box

使用方法:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

<template>

    <div>

        <scale-box :width="1920" :height="1080" bgc="transparent" :delay="100">

            <router-view />

        </scale-box>

    </div>

</template>

<script>

import ScaleBox from "vue2-scale-box";

export default {

    components: { ScaleBox },

};

</script>

<style lang="scss">

body {

    margin: 0;

    padding: 0;

    background: url("@/assets/bg.jpg");

}

</style>

vue3版本:vue3大屏适配缩放组件(vue3-scale-box - npm)

npm install vue3-scale-box

或者

yarn add vue3-scale-box

使用方法:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

<template>

    <ScaleBox :width="1920" :height="1080" bgc="transparent" :delay="100">

        <router-view />

    </ScaleBox>

</template>

<script>

import ScaleBox from "vue3-scale-box";

</script>

<style lang="scss">

body {

    margin: 0;

    padding: 0;

    background: url("@/assets/bg.jpg");

}

</style>

设置设备像素比例(设备像素比)

在项目的 utils 下新建 devicePixelRatio.js 文件

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

class devicePixelRatio {

  /* 获取系统类型 */

  getSystem() {

    const agent = navigator.userAgent.toLowerCase();

    const isMac = /macintosh|mac os x/i.test(navigator.userAgent);

    if (isMac) return false;

    // 目前只针对 win 处理,其它系统暂无该情况,需要则继续在此添加即可

    if (agent.indexOf("windows") >= 0) return true;

  }

  /* 监听方法兼容写法 */

  addHandler(element, type, handler) {

    if (element.addEventListener) {

      element.addEventListener(type, handler, false);

    } else if (element.attachEvent) {

      element.attachEvent("on" + type, handler);

    } else {

      element["on" + type] = handler;

    }

  }

  /* 校正浏览器缩放比例 */

  correct() {

    // 页面devicePixelRatio(设备像素比例)变化后,计算页面body标签zoom修改其大小,来抵消devicePixelRatio带来的变化

    document.getElementsByTagName("body")[0].style.zoom =

      1 / window.devicePixelRatio;

  }

  /* 监听页面缩放 */

  watch() {

    const that = this;

    // 注意: 这个方法是解决全局有两个window.resize

    that.addHandler(window, "resize", function () {

      that.correct(); // 重新校正浏览器缩放比例

    });

  }

  /* 初始化页面比例 */

  init() {

    const that = this;

    // 判断设备,只在 win 系统下校正浏览器缩放比例

    if (that.getSystem()) {

      that.correct(); // 校正浏览器缩放比例

      that.watch(); // 监听页面缩放

    }

  }

}

export default devicePixelRatio;

在App.vue 中引入并使用即可

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

<template>

  <div>

    <router-view />

  </div>

</template>

<script>

import devPixelRatio from "@/utils/devicePixelRatio.js";

export default {

  created() {

    new devPixelRatio().init(); // 初始化页面比例

  },

};

</script>

<style lang="scss">

body {

  margin: 0;

  padding: 0;

}

</style>

通过JS设置zoom属性调整缩放比例

在项目的 utils 下新建 monitorZoom.js 文件

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

export const monitorZoom = () => {

  let ratio = 0,

    screen = window.screen,

    ua = navigator.userAgent.toLowerCase();

  if (window.devicePixelRatio !== undefined) {

    ratio = window.devicePixelRatio;

  } else if (~ua.indexOf("msie")) {

    if (screen.deviceXDPI && screen.logicalXDPI) {

      ratio = screen.deviceXDPI / screen.logicalXDPI;

    }

  } else if (

    window.outerWidth !== undefined &&

    window.innerWidth !== undefined

  ) {

    ratio = window.outerWidth / window.innerWidth;

  }

  if (ratio) {

    ratio = Math.round(ratio * 100);

  }

  return ratio;

};

在main.js 中引入并使用即可

1

2

3

4

5

6

7

import { monitorZoom } from "@/utils/monitorZoom.js";

const m = monitorZoom();

if (window.screen.width * window.devicePixelRatio >= 3840) {

  document.body.style.zoom = 100 / (Number(m) / 2); // 屏幕为 4k 时

} else {

  document.body.style.zoom = 100 / Number(m);

}

完整代码

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

import Vue from "vue";

import App from "./App.vue";

import router from "./router";

/* 调整缩放比例 start */

import { monitorZoom } from "@/utils/monitorZoom.js";

const m = monitorZoom();

if (window.screen.width * window.devicePixelRatio >= 3840) {

  document.body.style.zoom = 100 / (Number(m) / 2); // 屏幕为 4k 时

} else {

  document.body.style.zoom = 100 / Number(m);

}

/* 调整缩放比例 end */

Vue.config.productionTip = false;

new Vue({

  router,

  render: (h) => h(App),

}).$mount("#app");

获取屏幕的分辨率

获取屏幕的宽:

window.screen.width * window.devicePixelRatio

获取屏幕的高:

window.screen.height * window.devicePixelRatio

移动端适配(使用 postcss-px-to-viewport 插件)

官网:https://github.com/evrone/postcss-px-to-viewport

npm install postcss-px-to-viewport --save-dev

或者

yarn add -D postcss-px-to-viewport

配置适配插件的参数(在项目根目录创建 .postcssrc.js 文件[与 src 目录平级])粘贴以下代码即可

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

module.exports = {

  plugins: {

    autoprefixer: {}, // 用来给不同的浏览器自动添加相应前缀,如-webkit-,-moz-等等

    "postcss-px-to-viewport": {

      unitToConvert: "px", // 需要转换的单位,默认为"px"

      viewportWidth: 390, // UI设计稿的宽度

      unitPrecision: 6, // 转换后的精度,即小数点位数

      propList: ["*"], // 指定转换的css属性的单位,*代表全部css属性的单位都进行转换

      viewportUnit: "vw", // 指定需要转换成的视窗单位,默认vw

      fontViewportUnit: "vw", // 指定字体需要转换成的视窗单位,默认vw

      selectorBlackList: ["wrap"], // 需要忽略的CSS选择器,不会转为视口单位,使用原有的px等单位

      minPixelValue: 1, // 默认值1,小于或等于1px则不进行转换

      mediaQuery: false, // 是否在媒体查询的css代码中也进行转换,默认false

      replace: true, // 是否直接更换属性值,而不添加备用属性

      exclude: [/node_modules/], // 忽略某些文件夹下的文件或特定文件,用正则做目录名匹配,例如 'node_modules' 下的文件

      landscape: false, // 是否处理横屏情况

      landscapeUnit: "vw", // 横屏时使用的视窗单位,默认vw

      landscapeWidth: 2048 // 横屏时使用的视口宽度

    }

  }

};


版权声明 : 本文内容来源于互联网或用户自行发布贡献,该文观点仅代表原作者本人。本站仅提供信息存储空间服务和不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权, 违法违规的内容, 请发送邮件至2530232025#qq.cn(#换@)举报,一经查实,本站将立刻删除。
原文链接 : https://blog.csdn.net/AdminGuan/article/details/127971358
相关文章
  • ESLint规范TypeScript代码使用方法
    ESLint 是一种 JavaScript linter,可以用来规范 JavaScript 或 TypeScript 代码,本文教你怎么在项目中快速把 ESLint 安排上。 怎么写出优雅的代码是一
  • Vue屏幕自适应三种实现方法介绍
    使用 scale-box 组件 属性: width宽度 默认1920 height高度 默认1080 bgc背景颜色 默认transparent delay自适应缩放防抖延迟时间(ms) 默认100 vue2版本:
  • 在web worker中使用fetch实例介绍
    1.Web Worker意义 由于 JS 是单线程的,费时的 JS 操作将会导致整个页面的阻塞。Web Worker 提供了创建多线程的方法,将一些耗时且 UI 无关的工
  • 实时通信Socket io的使用介绍

    实时通信Socket io的使用介绍
    最近在工作中,遇到了一个需求,需要和后台服务实时通信,获取各种设备的实时状态、以及对设备下发指令。后端这边选择了socket.io这个
  • js中如何对url进行编码和解码
    js 对url进行编码和解码 三种编码和解码函数 encodeURI和 decodeURI 它着眼于对整个URL进行编码,因此除了常见的符号以外,对其他一些在网址中
  • React RenderProps模式超详细介绍
    render prop是一个技术概念。它指的是使用值为function类型的prop来实现React component之间的代码共享。 如果一个组件有一个render属性,并且这个
  • Vue中ref、reactive、toRef、toRefs、$refs的基本用法总

    Vue中ref、reactive、toRef、toRefs、$refs的基本用法总
    一、ref reactive 1.1.为什么需要ref、reactive ??? setup函数中默认定义的变量并不是响应式的(即数据变了以后页面不会跟着变),如果想让变量变
  • Javascript如何实现对象扁平化实例介绍

    Javascript如何实现对象扁平化实例介绍
    数组扁平化相信大家已经耳熟能详了,在被面试官问到如何实现数组扁平化你就偷着乐吧,但是相信有不少大佬在面试一些国内顶尖的大厂
  • Immer功能最佳实践示例教程

    Immer功能最佳实践示例教程
    一、前言 Immer 是mobx的作者写的一个 immutable 库,核心实现是利用 ES6 的 proxy,几乎以最小的成本实现了 js 的不可变数据结构,简单易用、体
  • Ant Design 的Bug修复示例
    我在工作中大量使用Ant Design,它为我省去了很多重复劳动,所以有空的时候,我也会为Ant Design做一些微小的贡献。 本文详细描述了我处理
  • 本站所有内容来源于互联网或用户自行发布,本站仅提供信息存储空间服务,不拥有版权,不承担法律责任。如有侵犯您的权益,请您联系站长处理!
  • Copyright © 2017-2022 F11.CN All Rights Reserved. F11站长开发者网 版权所有 | 苏ICP备2022031554号-1 | 51LA统计