Vue后台项目开发必备:全面解析分辨率适配与网页缩放技巧!

本文介绍了一种使用lodash库实现的Vue应用屏幕分辨率自适应方法,通过监听窗口大小变化,动态调整页面布局以保持在不同分辨率下的良好显示效果。
摘要由CSDN通过智能技术生成

1. 各屏幕分辨率下适配展示

首先给大家展示一下我的屏幕分辨率兼容效果,方便大家来判断我的适配方案是否可行

正常1920*1080 100%

1920*1080 150

1440*900 100%

1440*900 150%

2. 屏幕分辨率适配方案

这里就不再过多举例了,通过这四张图可以看出来页面布局并没有受到过多的影响,所以直接上代码,cv就完事了

首先下载lodash插件

1.      npm i lodash -S

然后在App. vue 中导入,此处的App.vue主要指的是主框架,因不同项目可自行选择

1.     import _ from 'lodash'

 然后给app容器挂上   ref=“app”

<template>
    <div id="app" ref="app">
      <router-view />
    </div>
</template>

然后在  mounted  使用如下方法(其中的1920以及1080为定义的画布尺寸)

<script>
import _ from "lodash";
export default {
  name: "App",
  mounted() {
    this.$nextTick(() => {
      const $app = this.$refs.app;
      // 设置 屏幕 百分比 尺寸 适配
      const standardScale = "100%" / "100%";

      window.addEventListener(
        "resize",
        _.debounce(function () {
          const docHeight = document.body.clientHeight;
          const docWidth = document.body.clientWidth;

          if (docWidth < 1680) {
            const currentScale = docHeight / docWidth;
            let [scale, translate] = [0, 0];
            if (currentScale < standardScale) {
              // 以高度计算
              scale = docHeight / 1080;
              const shouleWidth = 1920 * scale;
         
              const offsetWidth = docWidth - shouleWidth;
              translate =
                offsetWidth > 0 ? `translate(${offsetWidth / 2}px, 0)` : "";
            } else {
              // 以宽度计算
              scale = docWidth / 1920;
              const shouleHeight = 1080 * scale;
              const offsetHeight = docHeight - shouleHeight;
              translate =
                offsetHeight > 0 ? `translate(0, ${offsetHeight / 2}px)` : "";
            }
            console.log(translate);
            $app.style.cssText = `
            transform: scale(${scale}) ${translate};
            transform-origin: top left;
            min-width: 1920px;
            min-height: 1080px;
          `;
          } else {
            $app.style.cssText = "";
          }
        }),
        300
      );

      if (document.createEvent) {
        var event = document.createEvent("HTMLEvents");
        event.initEvent("resize", true, true);
        window.dispatchEvent(event);
      } else if (document.createEventObject) {
        window.fireEvent("onresize");
      }
    });
  },
};

  • 8
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 3
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值