欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

通過(guò)vue方式實(shí)現(xiàn)二維碼掃碼功能

 更新時(shí)間:2021年11月13日 10:49:45   作者:我想變成大牛  
這篇文章給大家介紹了通過(guò)vue的方式,實(shí)現(xiàn)掃碼功能,實(shí)現(xiàn)步驟分為兩步,本文通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),感興趣的朋友跟隨小編一起看看吧

提示

這個(gè)插件只能在https協(xié)議下才能訪(fǎng)問(wèn),http協(xié)議不好使,最好用vue2,vue3容易報(bào)錯(cuò)!?。。?!

描述

通過(guò)vue的方式,實(shí)現(xiàn)掃碼功能

參考文檔:vue-qrcode-reader去官網(wǎng)–>官方文檔

效果展示

在這里插入圖片描述

實(shí)現(xiàn)步驟:

步驟一(安裝插件)

npm install --save vue-qrcode-reader

步驟二(創(chuàng)建組件)

因?yàn)榭赡芏鄠€(gè)頁(yè)面都會(huì)用到,所以弄成了組件
(1)在src下面的components創(chuàng)建qrcode.vue
(2)代碼實(shí)現(xiàn)

// qrcode.vue
<template>
  <div>
      <!-- <p class="error">{{ error }}</p> -->
      <!--錯(cuò)誤信息-->

      <!-- <p class="decode-result">
          掃描結(jié)果:
          <b>{{ result }}</b>
      </p> -->
      <!--掃描結(jié)果-->
      <!-- <p @click="openCamera">打開(kāi)相機(jī)</p>
      <div v-show="show" class="cameraMessage">
          <p @click="closeCamera">關(guān)閉相機(jī)</p>
          <p @click="openFlash">打開(kāi)手電筒</p>
          <p @click="switchCamera">相機(jī)反轉(zhuǎn)</p>
      </div> -->

      <qrcode-stream
          v-show="qrcode"
          :camera="camera"
          :torch="torchActive"
          @decode="onDecode"
          @init="onInit"
      >
          <div>
              <div class="qr-scanner">
                  <div class="box">
                      <div class="line"></div>
                      <div class="angle"></div>
                  </div>
                  <div class="txt">
                      將二維碼/條碼放入框內(nèi),即自動(dòng)掃描
                      <div class="myQrcode">我的二維碼</div>
                  </div>
              </div>
          </div>
      </qrcode-stream>
  </div>
</template>

<script>
// 下載插件
// cnpm install --save  vue-qrcode-reader

// 引入
import { QrcodeStream } from 'vue-qrcode-reader';

export default {
  // 注冊(cè)
  components: { QrcodeStream },

  data() {
      return {
          result: '', // 掃碼結(jié)果信息
          error: '', // 錯(cuò)誤信息
          // show: false,
          // qrcode: false,
          qrcode: true,
          torchActive: false,
          camera: 'front',
      };
  },

  methods: {
      onDecode(result) {
          console.log(result);
          this.result = result;
      },
      async onInit(promise) {
          const { capabilities } = await promise;

          const TORCH_IS_SUPPORTED = !!capabilities.torch;
          try {
              await promise;
          } catch (error) {
              if (error.name === 'NotAllowedError') {
                  this.error = 'ERROR: 您需要授予相機(jī)訪(fǎng)問(wèn)權(quán)限';
              } else if (error.name === 'NotFoundError') {
                  this.error = 'ERROR: 這個(gè)設(shè)備上沒(méi)有攝像頭';
              } else if (error.name === 'NotSupportedError') {
                  this.error = 'ERROR: 所需的安全上下文(HTTPS、本地主機(jī))';
              } else if (error.name === 'NotReadableError') {
                  this.error = 'ERROR: 相機(jī)被占用';
              } else if (error.name === 'OverconstrainedError') {
                  this.error = 'ERROR: 安裝攝像頭不合適';
              } else if (error.name === 'StreamApiNotSupportedError') {
                  this.error = 'ERROR: 此瀏覽器不支持流API';
              }
          }
      },
      // 打開(kāi)相機(jī)
      // openCamera() {
      //     this.camera = 'rear'
      //     this.qrcode = true
      //     this.show = true
      // },
      // 關(guān)閉相機(jī)
      // closeCamera() {
      //     this.camera = 'off'
      //     this.qrcode = false
      //     this.show = false
      // },
      // 打開(kāi)手電筒
      // openFlash() {
      //     switch (this.torchActive) {
      //         case true:
      //             this.torchActive = false
      //             break
      //         case false:
      //             this.torchActive = true
      //             break
      //     }
      // },
      // 相機(jī)反轉(zhuǎn)
      // switchCamera() {
      //     // console.log(this.camera);
      //     switch (this.camera) {
      //         case 'front':
      //             this.camera = 'rear'
      //             console.log(this.camera)
      //             break
      //         case 'rear':
      //             this.camera = 'front'
      //             console.log(this.camera)
      //             break
      //     }
      // }
  },
};
</script>
<style scoped>
.error {
  font-weight: bold;
  color: red;
}
.cameraMessage {
  width: 100%;
  height: 60px;
}
.qr-scanner {
  background-image: linear-gradient(
          0deg,
          transparent 24%,
          rgba(32, 255, 77, 0.1) 25%,
          rgba(32, 255, 77, 0.1) 26%,
          transparent 27%,
          transparent 74%,
          rgba(32, 255, 77, 0.1) 75%,
          rgba(32, 255, 77, 0.1) 76%,
          transparent 77%,
          transparent
      ),
      linear-gradient(
          90deg,
          transparent 24%,
          rgba(32, 255, 77, 0.1) 25%,
          rgba(32, 255, 77, 0.1) 26%,
          transparent 27%,
          transparent 74%,
          rgba(32, 255, 77, 0.1) 75%,
          rgba(32, 255, 77, 0.1) 76%,
          transparent 77%,
          transparent
      );
  background-size: 3rem 3rem;
  background-position: -1rem -1rem;
  width: 100%;
  /* height: 100%; */
  height: 100vh;
  /* height: 288px; */
  position: relative;
  background-color: #1110;

  /* background-color: #111; */
}
/* .qrcode-stream-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 82px;
  clear: both;
} */
/* .qrcode-stream-wrapper >>> .qrcode-stream-camera {
  width: 213px;
  height: 210px;
  clear: both;
  margin-top: 39px;
} */
.qr-scanner .box {
  width: 213px;
  height: 213px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border: 0.1rem solid rgba(0, 255, 51, 0.2);
  /* background: url('http://resource.beige.world/imgs/gongconghao.png') no-repeat center center; */
}
.qr-scanner .txt {
  width: 100%;
  height: 35px;
  line-height: 35px;
  font-size: 14px;
  text-align: center;
  /* color: #f9f9f9; */
  margin: 0 auto;
  position: absolute;
  top: 70%;
  left: 0;
}
.qr-scanner .myQrcode {
  text-align: center;
  color: #00ae10;
}
.qr-scanner .line {
  height: calc(100% - 2px);
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 255, 51, 0) 43%, #00ff33 211%);
  border-bottom: 3px solid #00ff33;
  transform: translateY(-100%);
  animation: radar-beam 2s infinite alternate;
  animation-timing-function: cubic-bezier(0.53, 0, 0.43, 0.99);
  animation-delay: 1.4s;
}

.qr-scanner .box:after,
.qr-scanner .box:before,
.qr-scanner .angle:after,
.qr-scanner .angle:before {
  content: '';
  display: block;
  position: absolute;
  width: 3vw;
  height: 3vw;

  border: 0.2rem solid transparent;
}

.qr-scanner .box:after,
.qr-scanner .box:before {
  top: 0;
  border-top-color: #00ff33;
}

.qr-scanner .angle:after,
.qr-scanner .angle:before {
  bottom: 0;
  border-bottom-color: #00ff33;
}

.qr-scanner .box:before,
.qr-scanner .angle:before {
  left: 0;
  border-left-color: #00ff33;
}

.qr-scanner .box:after,
.qr-scanner .angle:after {
  right: 0;
  border-right-color: #00ff33;
}

@keyframes radar-beam {
  0% {
      transform: translateY(-100%);
  }

  100% {
      transform: translateY(0);
  }
}
</style>

(3)在需要掃碼的頁(yè)面引入

// 
import qrcode from '@/components/qrcode.vue';

(4)注冊(cè)組件

// 
components: {
        'vue-qrcode': qrcode,
    },

(5)使用組件

// 在需要展示二維碼的地方進(jìn)行渲染
<vue-qrcode />
//如果上面這個(gè)不好使,可以用下面這個(gè)
<vue-qrcode></vue-qrcode>

到此這篇關(guān)于vue實(shí)現(xiàn)二維碼掃碼功能的文章就介紹到這了,更多相關(guān)vue二維碼掃碼內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • 淺談Vue.js 中的 v-on 事件指令的使用

    淺談Vue.js 中的 v-on 事件指令的使用

    這篇文章主要介紹了淺談Vue.js 中的 v-on 事件指令的使用,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2018-11-11
  • 利用Nuxt.js做Vuex數(shù)據(jù)持久化

    利用Nuxt.js做Vuex數(shù)據(jù)持久化

    這篇文章主要介紹了利用Nuxt.js做Vuex數(shù)據(jù)持久化問(wèn)題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-10-10
  • Vuex之理解Store的用法

    Vuex之理解Store的用法

    本篇文章主要介紹了Vuex之理解Store的用法,Store類(lèi)就是存儲(chǔ)數(shù)據(jù)和管理數(shù)據(jù)方法的倉(cāng)庫(kù),實(shí)現(xiàn)方式是將數(shù)據(jù)和方法已對(duì)象形式傳入其實(shí)例中
    2017-04-04
  • Vue組件庫(kù)ElementUI實(shí)現(xiàn)表格列表分頁(yè)效果

    Vue組件庫(kù)ElementUI實(shí)現(xiàn)表格列表分頁(yè)效果

    這篇文章主要為大家詳細(xì)介紹了Vue組件庫(kù)ElementUI實(shí)現(xiàn)表格列表分頁(yè)效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2021-06-06
  • 詳解Vuejs2.0 如何利用proxyTable實(shí)現(xiàn)跨域請(qǐng)求

    詳解Vuejs2.0 如何利用proxyTable實(shí)現(xiàn)跨域請(qǐng)求

    本篇文章主要介紹了Vuejs2.0 如何利用proxyTable實(shí)現(xiàn)跨域請(qǐng)求,具有一定的參考價(jià)值,有興趣的可以了解一下
    2017-08-08
  • 關(guān)于vue中媒體查詢(xún)不起效的原因總結(jié)

    關(guān)于vue中媒體查詢(xún)不起效的原因總結(jié)

    這篇文章主要介紹了關(guān)于vue中媒體查詢(xún)不起效的原因總結(jié),具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-09-09
  • Vue 實(shí)現(xiàn)創(chuàng)建全局組件,并且使用Vue.use() 載入方式

    Vue 實(shí)現(xiàn)創(chuàng)建全局組件,并且使用Vue.use() 載入方式

    這篇文章主要介紹了Vue 實(shí)現(xiàn)創(chuàng)建全局組件,并且使用Vue.use() 載入方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧
    2020-08-08
  • Vue實(shí)現(xiàn)手機(jī)掃描二維碼預(yù)覽頁(yè)面效果

    Vue實(shí)現(xiàn)手機(jī)掃描二維碼預(yù)覽頁(yè)面效果

    這篇文章主要為大家詳細(xì)介紹了Vue實(shí)現(xiàn)手機(jī)掃描二維碼預(yù)覽頁(yè)面效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2020-03-03
  • 一文詳解如何在Vue3+Vite中使用JSX

    一文詳解如何在Vue3+Vite中使用JSX

    vite是一個(gè)由vue作者尤雨溪專(zhuān)門(mén)為vue打造的開(kāi)發(fā)利器,其目的是使 vue項(xiàng)目的開(kāi)發(fā)更加簡(jiǎn)單和快速,下面這篇文章主要給大家介紹了關(guān)于如何在Vue3+Vite中使用JSX的相關(guān)資料,需要的朋友可以參考下
    2023-02-02
  • vue父組件與子組件之間的數(shù)據(jù)交互方式詳解

    vue父組件與子組件之間的數(shù)據(jù)交互方式詳解

    最近一直在做一個(gè)vue移動(dòng)端商城的實(shí)戰(zhàn),期間遇到一個(gè)小小的問(wèn)題,值得一說(shuō),下面這篇文章主要給大家介紹了關(guān)于vue父組件與子組件之間數(shù)據(jù)交互的相關(guān)資料,文中通過(guò)實(shí)例代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2022-11-11

最新評(píng)論