700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > js浏览器实现简单的实时扫一扫功能

js浏览器实现简单的实时扫一扫功能

时间:2019-12-25 11:10:57

相关推荐

js浏览器实现简单的实时扫一扫功能

描述:利用vue-qrcode-reader插件实现h5/wap端简单的扫一扫功能

参考文档:https://gruhn.github.io/vue-qrcode-reader/demos/Validate.html官方文档

安装插件

npm i --save vue3-qr-reader

yarn add vue3-qr-reader

注意项目运行必须在https下,http的链接下无法调取摄像头的功能

vue中的代码

<template><div class="page-scan"><div class="scan-box"><video ref="video"id="video"class="scan-video"autoplay></video><div class="qr-scanner"><div class="box"><div class="line"></div><div class="angle"></div></div></div><div class="scan-tip">验证码:{{ scanResult }}</div></div></div></template><script>import {BrowserMultiFormatReader } from '@zxing/library'export default {name: 'scanCodePage',data() {return {scanTextData: {codeReader: null,tipMsg: '识别二维码',// 这个,就是当前调用的摄像头的索引,为什么是6,我会在后面说的 华为手机是鸿蒙系统有8个摄像头num: 5,// 这个就是扫描到的摄像头的数量videoLength: ''},hasBind: false,scanResult: ''}},props: {show: {type: Boolean,default: false}},mounted() {this.scanTextData.codeReader = new BrowserMultiFormatReader()this.openScan() // 打开摄像头},watch: {show(val) {if (!val) {// 关闭摄像头if (!document.getElementById('video')) {alert('请授权')return}let thisVideo = document.getElementById('video')thisVideo.srcObject.getTracks()[0].stop()this.scanTextData.codeReader.reset()} else {if (this.scanTextData.codeReader === null) {this.scanTextData.codeReader = new BrowserMultiFormatReader()}this.openScan()}}},methods: {async openScan() {this.scanTextData.codeReader.getVideoInputDevices().then((videoInputDevices) => {// 默认获取第一个摄像头设备idlet firstDeviceId = videoInputDevices[0].deviceIdconsole.log('手机摄像头的数量',videoInputDevices.length,videoInputDevices)// 获取第一个摄像头设备的名称const videoInputDeviceslablestr = JSON.stringify(videoInputDevices[0].label)if (videoInputDevices.length > 1) {// 华为手机有6个摄像头,前三个是前置,后三个是后置,第6个摄像头最清晰if (videoInputDevices.length > 5) {firstDeviceId = videoInputDevices[5].deviceId} else {// 判断是否后置摄像头if (videoInputDeviceslablestr.indexOf('back') > -1) {firstDeviceId = videoInputDevices[0].deviceId} else {firstDeviceId = videoInputDevices[1].deviceId}}}this.decodeFromInputVideoFunc(firstDeviceId)}).catch((err) => {console.error(err)})},decodeFromInputVideoFunc(firstDeviceId) {this.scanTextData.codeReader.reset()this.scanTextData.codeReader.decodeFromInputVideoDeviceContinuously(firstDeviceId,'video',(result, err) => {if (result && result.text) {this.handleResult(result.text)}if (err && !err) {console.log(err)this.$toast.fail(err)}})},handleResult(scanResult) {console.log('扫描二维码获取的参数',scanResult)},destroyed() {this.scanTextData.codeReader.reset() // 重置摄像头}}</script><style scoped>.scan-box {position: fixed;top: 0;left: 0;height: 100%;width: 100vw;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;}.scan-video {height: 213px;width: 213px;object-fit: cover;position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);}.qr-scanner .box {width: 213px;height: 213px;position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);overflow: hidden;/* border: 0.1rem solid #488aff; *//* 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%, #022ff5 211%);border-bottom: 3px solid #488aff;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: #488aff;}.qr-scanner .angle:after,.qr-scanner .angle:before {bottom: 0;border-bottom-color: #022ff5;}.qr-scanner .box:before,.qr-scanner .angle:before {left: 0;border-left-color: #022ff5;}.qr-scanner .box:after,.qr-scanner .angle:after {right: 0;border-right-color: #022ff5;}@keyframes radar-beam {0% {transform: translateY(-100%);}100% {transform: translateY(0);}}.scan-tip {width: 100vw;text-align: center;margin-bottom: 5vh;color: white;font-size: 5vw;position: absolute;bottom: 50px;left: 0;color: #fff;}.page-scan {overflow-y: hidden;}</style>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。