vue能實現自適應嗎

2022-12-30 18:00:43

vue能實現自適應,其實現自適應的方法有:1、通過「npm install」或「yarn add」命令安裝「scale-box」元件,並使用「scale-box」實現適配縮放;2、通過設定裝置畫素比例實現自適應;3、通過JS設定zoom屬性調整縮放比例來實現自適應即可。

本教學操作環境:Windows10系統、vue2&&vue3版、Dell G3電腦。

vue能實現自適應嗎?

能。

Vue螢幕自適應三種實現方法詳解

使用 scale-box 元件

屬性:

  • width寬度 預設1920
  • height高度 預設1080
  • bgc背景顏色 預設"transparent"
  • delay自適應縮放防抖延遲時間(ms) 預設100

vue2版本:

npm install vue2-scale-box

或者

yarn add vue2-scale-box

使用方法:

<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>
登入後複製

npm install vue3-scale-box

或者

yarn add vue3-scale-box

使用方法:

<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 檔案

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 中引入並使用即可

<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 檔案

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 中引入並使用即可

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);
}
登入後複製

完整程式碼

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 外掛)

官網:

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

或者

yarn add -D postcss-px-to-viewport

設定適配外掛的引數(在專案根目錄建立 .postcssrc.js 檔案[與 src 目錄平級])貼上以下程式碼即可

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 // 橫屏時使用的視口寬度
    }
  }
};
登入後複製

推薦學習:《》

以上就是vue能實現自適應嗎的詳細內容,更多請關注TW511.COM其它相關文章!