IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> uni-app 微信相机模仿扫码枪的功能 -> 正文阅读

[JavaScript知识库]uni-app 微信相机模仿扫码枪的功能

需求:
1、扫描一个标签,不返回页面,直接继续扫描
2、扫描到一个要发出滴的声音

组件源码:

<template>
	<view class="scan-view" v-if="show">
		<view class='scan-border'>
			<camera class='scan-camera' mode="scanCode" @scancode='scancode' frame-size='large'>
				<cover-image class='cover-corner cover-left-top' src='/static/img/left-top.png'></cover-image>
				<cover-image class='cover-corner cover-right-top' src='/static/img/right-top.png'></cover-image>
				<cover-image class='cover-corner cover-left-bottom' src='/static/img/left-bottom.png'></cover-image>
				<cover-image class='cover-corner cover-right-bottom' src='/static/img/right-bottom.png'></cover-image>
				<cover-view class='scan-animation'></cover-view>
			</camera>
			<cover-view @click="esc" class="mt60 primary_color">
				退出
			</cover-view>
			<cover-view class="mt40" style="width: 100%;text-align: center;">
				<cover-view v-for="item in resultList" :key="item" style="width: 100%;text-align: center;">{{item}}</cover-view>
			</cover-view>
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				innerAudioContext: null,
				result: '',
				resultList: [], //保存此次扫码结果
				show: false
			}
		},
		created() {
			this.innerAudioContext = uni.createInnerAudioContext()
			this.innerAudioContext.src =
				'static/img/scan-audio.mp3';
		},
		methods: {
			open() {
				this.show = true;
			},
			close() {
				this.show = false;
			},
			scancode(e) {
				//1、获取扫描结果的值
				this.result = e.detail.result;
				let re = /^\d{10}$/;
				console.log("扫描结果", this.result)
				//2、判断此次扫码是否有结果集,如果有,则不进行处理,如果没有,则emit\
				if (!this.resultList.includes(this.result) && re.test(this.result)) {
					// 提示音
					this.innerAudioContext.play()
					// 校验扫描结果,并处理
					this.$emit("scan", this.result)
					this.resultList.unshift(this.result)
				}
			},
			//退出
			esc() {
				this.close();
			}
		}
	}
</script>

<style>
	.scan-view {
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		background-color: #B9BEC4;
		position: fixed;
		z-index: 999;
		top: 0;
		left: 0;
		align-items: center;
		justify-content: space-around;
	}

	.scan-border {
		width: 94%;
		height: 94%;
		/* 	border: 6upx solid #08FDFE; */
		border-radius: 10upx;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.scan-camera {
		width: 500upx;
		height: 500upx;
		border-radius: 6upx;
		margin: 30upx;
		position: relative;
	}

	.cover-corner {
		width: 80upx;
		height: 80upx;
		position: absolute;
	}

	.cover-left-top {
		left: 0;
		top: 0;
	}

	.cover-right-top {
		right: 0;
		top: 0;
	}

	.cover-left-bottom {
		left: 0;
		bottom: 0;
	}

	.cover-right-bottom {
		right: 0;
		bottom: 0;
	}

	.scan-animation {
		position: absolute;
		top: 0px;
		left: 10upx;
		width: 480upx;
		animation: myanimation 3s linear infinite;
		height: 4upx;
		background-color: #106DFD;
		border-radius: 50%;
	}

	@keyframes myanimation {
		from {
			top: 0px;
		}

		to {
			top: 250px;
		}
	}
</style>

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-05-06 10:58:49  更:2022-05-06 10:59:58 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 23:27:27-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码