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

2019-07-05  本文已影响0人  Maxine708

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);
上一篇下一篇

猜你喜欢

热点阅读