美文网首页
qrcode.js 动态生成二维码.md

qrcode.js 动态生成二维码.md

作者: Maxine708 | 来源:发表于2019-07-05 16:14 被阅读0次

    qrcode的 github 地址

    var codeUrl="....";
    var qrcode = new QRCode(document.getElementById("qrcode"), {
            width: 256,
            height: 256,
            colorDark: '#f7941d',//前景色
            colorLight: '#e7e3e3',//背景色
            correctLevel: QRCode.CorrectLevel.L//调节密度大小 固定几个值变化
        });
    qrcode.makeCode(codeUrl);
    

    相关文章

      网友评论

          本文标题:qrcode.js 动态生成二维码.md

          本文链接:https://www.haomeiwen.com/subject/pbuehctx.html