最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

vue實(shí)現(xiàn)二維碼掃碼功能(帶樣式)

 更新時(shí)間:2021年08月31日 15:48:50   作者:托尼沙灘褲  
最近接了一個(gè)移動(dòng)端的項(xiàng)目,實(shí)現(xiàn)微信掃碼功能,今天小編利用這個(gè)平臺(tái)給大家分享vue實(shí)現(xiàn)二維碼掃描功能的實(shí)現(xiàn)代碼,需要的朋友參考下吧

需求:
利用vue實(shí)現(xiàn)二維碼掃描;

插件:
QRCodeReader;

插件下載

npm install --save vue-qrcode-reader

注意:
需要在https協(xié)議下才可以調(diào)用相機(jī),實(shí)現(xiàn)掃碼。
可以通過(guò)配置vue.config.js中的devServer:{https:true}
或參照前文章 前端使用Nuxt框架,配置本地https訪問(wèn) 配置本地證書(shū)

在這里插入圖片描述

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

    <p class="decode-result">
      掃描結(jié)果:
      <b>{{ result }}</b>
    </p>
    <!--掃描結(jié)果-->

    <qrcode-stream @decode="onDecode" @init="onInit" style="height: 100vh;">
      <div>
        <div class="qr-scanner">
          <div class="box">
            <div class="line"></div>
            <div class="angle"></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ò)誤信息
    }
  },

  methods: {
    onDecode(result) {
      alert(result)
      this.result = result
    },

    async onInit(promise) {
      try {
        await promise
      } catch (error) {
        if (error.name === 'NotAllowedError') {
          this.error = 'ERROR: 您需要授予相機(jī)訪問(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'
        }
      }
    }
  }
}
</script>

<style scoped>
.error {
  font-weight: bold;
  color: red;
}
</style>

<style scoped>
    /* * {
      margin: 0;
      padding: 0;
    }
    body {
      height: 700px;
      margin: 0;
    } */

    .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;
      position: relative;
      background-color: #1110;

      /* background-color: #111; */
    }

    .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 .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>

好,下面在一段代碼vue項(xiàng)目中實(shí)現(xiàn)掃碼功能

項(xiàng)目地址:https://github.com/wkl007/vue-scan-demo.git
項(xiàng)目主要是做的一個(gè)掃碼的功能
核心代碼為

 <div class="scan">
    <div id="bcid">
      <div style="height:40%"></div>
      <p class="tip">...載入中...</p>
    </div>
    <footer>
      <button @click="startRecognize">1.創(chuàng)建控件</button>
      <button @click="startScan">2.開(kāi)始掃描</button>
      <button @click="cancelScan">3.結(jié)束掃描</button>

      <button @click="closeScan">4.關(guān)閉控件</button>
    </footer>
  </div>
</template>

<script type='text/ecmascript-6'>
  let scan = null

  export default {
    data () {
      return {
        codeUrl: '',
      }
    },
    methods: {
      // 創(chuàng)建掃描控件
      startRecognize () {
        let that = this
        if (!window.plus) return
        scan = new plus.barcode.Barcode('bcid')
        scan.onmarked = onmarked

        function onmarked (type, result, file) {
          switch (type) {
            case plus.barcode.QR:
              type = 'QR'
              break
            case plus.barcode.EAN13:
              type = 'EAN13'
              break
            case plus.barcode.EAN8:
              type = 'EAN8'
              break
            default:
              type = '其它' + type
              break
          }
          result = result.replace(/\n/g, '')
          that.codeUrl = result
          alert(result)
          that.closeScan()

        }
      },
      // 開(kāi)始掃描
      startScan () {
        if (!window.plus) return
        scan.start()
      },
      // 關(guān)閉掃描
      cancelScan () {
        if (!window.plus) return
        scan.cancel()
      },
      // 關(guān)閉條碼識(shí)別控件
      closeScan () {
        if (!window.plus) return
        scan.close()
      },
    }
  }
</script>
<style lang="less">
  .scan {
    height: 100%;

    #bcid {
      width: 100%;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 3rem;
      text-align: center;
      color: #fff;
      background: #ccc;
    }

    footer {
      position: absolute;
      left: 0;
      bottom: 1rem;
      height: 2rem;
      line-height: 2rem;
      z-index: 2;
    }
  }
</style>

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

相關(guān)文章

  • Vue3中關(guān)于getCurrentInstance的大坑及解決

    Vue3中關(guān)于getCurrentInstance的大坑及解決

    這篇文章主要介紹了Vue3中關(guān)于getCurrentInstance的大坑及解決方案,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-04-04
  • vue2使用jspdf插件實(shí)現(xiàn)頁(yè)面自定義塊pdf下載方式

    vue2使用jspdf插件實(shí)現(xiàn)頁(yè)面自定義塊pdf下載方式

    本文介紹了在Vue項(xiàng)目中實(shí)現(xiàn)PDF下載功能的案例,使用了jspdf和html2-canvas插件,實(shí)現(xiàn)了點(diǎn)擊按鈕彈出下載進(jìn)度彈窗并顯示四個(gè)模塊下載進(jìn)度,下載完成后關(guān)閉彈窗的功能,文中提供了使用的插件版本和相關(guān)代碼,供讀者參考
    2026-04-04
  • Vue.js實(shí)戰(zhàn)之Vuex的入門(mén)教程

    Vue.js實(shí)戰(zhàn)之Vuex的入門(mén)教程

    這篇文章主要給大家介紹了Vue.js實(shí)戰(zhàn)之Vuex的入門(mén)教程,文中介紹的非常詳細(xì),相信對(duì)大家具有一定的參考價(jià)值,需要的朋友們下面來(lái)一起看看吧。
    2017-04-04
  • Vue首屏性能優(yōu)化組件知識(shí)點(diǎn)總結(jié)

    Vue首屏性能優(yōu)化組件知識(shí)點(diǎn)總結(jié)

    在本篇文章里小編給大家整理了一篇關(guān)于Vue首屏性能優(yōu)化組件知識(shí)點(diǎn)總結(jié),有需要的朋友們可以跟著學(xué)習(xí)下。
    2021-11-11
  • Vue實(shí)現(xiàn)極致舒適的可編輯表格

    Vue實(shí)現(xiàn)極致舒適的可編輯表格

    使用ElementPlus的Table啥都好,就是沒(méi)有可編輯表格,所以這篇文章就來(lái)和大家分享一下Vue實(shí)現(xiàn)極致舒適的可編輯表格的方法,希望對(duì)大家有所幫助
    2023-06-06
  • vue之使用vuex進(jìn)行狀態(tài)管理詳解

    vue之使用vuex進(jìn)行狀態(tài)管理詳解

    這篇文章主要介紹了vue之使用vuex進(jìn)行狀態(tài)管理詳解,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-04-04
  • el-table樹(shù)形表格表單驗(yàn)證(列表生成序號(hào))

    el-table樹(shù)形表格表單驗(yàn)證(列表生成序號(hào))

    這篇文章主要介紹了el-table樹(shù)形表格表單驗(yàn)證(列表生成序號(hào)),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2020-05-05
  • vue開(kāi)發(fā)簡(jiǎn)單上傳圖片功能

    vue開(kāi)發(fā)簡(jiǎn)單上傳圖片功能

    這篇文章主要為大家詳細(xì)介紹了vue開(kāi)發(fā)簡(jiǎn)單上傳圖片功能,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2020-06-06
  • Vue.set() this.$set()引發(fā)的視圖更新思考及注意事項(xiàng)

    Vue.set() this.$set()引發(fā)的視圖更新思考及注意事項(xiàng)

    this.$set()和Vue.set()本質(zhì)方法一樣,前者可以用在methods中使用。這篇文章主要介紹了Vue.set() this.$set()引發(fā)的視圖更新思考及注意事項(xiàng),需要的朋友可以參考下
    2018-08-08
  • vue開(kāi)發(fā)之不同瀏覽器的類型判斷方式

    vue開(kāi)發(fā)之不同瀏覽器的類型判斷方式

    這篇文章主要介紹了vue開(kāi)發(fā)之不同瀏覽器的類型判斷方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-03-03

最新評(píng)論

石首市| 丰顺县| 怀仁县| 涡阳县| 兴业县| 甘孜县| 盐边县| 固安县| 浑源县| 盐源县| 宝坻区| 泗洪县| 阳春市| 无极县| 永新县| 长阳| 邵阳县| 天长市| 家居| 茌平县| 杭锦旗| 凤台县| 阳信县| 叙永县| 攀枝花市| 盱眙县| 开化县| 凤阳县| 仙居县| 夏邑县| 凉山| 许昌县| 黎平县| 资阳市| 且末县| 南涧| 泸水县| 昌都县| 长岛县| 哈尔滨市| 临汾市|