广告位联系
返回顶部
分享到

uniapp在h5页面实现扫码功能(html5-qrcode)

html5 来源:互联网 作者:佚名 发布时间:2024-06-11 21:10:52 人浏览
摘要

安装 1 npm install html5-qrcode 代码 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73

安装

1

npm install html5-qrcode

代码

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

<template>

    <view class="container">

        <button class="scan" @click="scanCode">打开相机扫码</button>

        <view class="reader-box" v-if="isScaning">

            <view class="reader" id="reader"></view>

        </view>

    </view>

</template>

<script>

    import {

        Html5Qrcode

    } from 'html5-qrcode';

    export default {

        data() {

            return {

                html5Qrcode: null,

                isScaning: false,

            }

        },

        methods: {

            startScan() {

                this.isScaning = true;

                Html5Qrcode.getCameras().then(devices => {

                    if (devices && devices.length) {

                        this.html5Qrcode = new Html5Qrcode('reader');

                        this.html5Qrcode.start({

                            facingMode: 'environment',

                        }, {

                            fps: 24,

                            qrbox: 280

                        }, (decodeText, decodeResult) => {

                            console.log(decodeText)

                            if (decodeText) {

                                this.stopScan();

                                this.isScaning = false;

                            }

                        }, (err) => {

                            console.log(err)

                        });

                    }

                });

            },

            stopScan() {

                this.html5Qrcode.stop();

            },

            scanCode() {

                console.log('helo')

                this.startScan();

            }

        }

    }

</script>

<style scoped>

    .container{

        height:100%;

    }

    .reader-box {

        position: fixed;

        top: 0;

        bottom: 0;

        left: 0;

        right: 0;

        background-color: rgba(0, 0, 0, 0.5);

    }

    .reader {

        width: 540rpx;

        height: 540rpx;

        position: absolute;

        top: 50%;

        left: 50%;

        transform: translate(-50%, -50%);

    }

</style>

测试效果

uniapp运行到浏览器


版权声明 : 本文内容来源于互联网或用户自行发布贡献,该文观点仅代表原作者本人。本站仅提供信息存储空间服务和不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权, 违法违规的内容, 请发送邮件至2530232025#qq.cn(#换@)举报,一经查实,本站将立刻删除。
原文链接 :
相关文章
  • 本站所有内容来源于互联网或用户自行发布,本站仅提供信息存储空间服务,不拥有版权,不承担法律责任。如有侵犯您的权益,请您联系站长处理!
  • Copyright © 2017-2022 F11.CN All Rights Reserved. F11站长开发者网 版权所有 | 苏ICP备2022031554号-1 | 51LA统计