使用html5组件canvas标签完成动画制作。canvas使得不再依赖flash就可使用纯js进行绘图,相比03年出现的svg,在动画、图表的制作上它们各有特点。
js的方式
下载:https://github.com/davidshimjs/qrcodejs
提供了动态更新二维码的方法:makeCode
使用:
var code = new QRCode($('#' + data.outSerialNo)[0], {
text: 'http://3o5.cn/q/' + data.outSerialNo + '.html',
width: 100,
height: 100,
colorDark: "#94771d",
colorLight: "#ffffff",
correctLevel: QRCode.CorrectLevel.H
});
jquery插件
下载:https://github.com/jeromeetienne/jquery-qrcode
使用:
$('#' + data.outSerialNo).qrcode({
width: 100,
foreground: "#94771d",
background: "#FFF",
height: 100,
typeNumber:-1,
text: 'http://' + data.outSerialNo + '.html'
});
angular插件
下载:https://github.com/monospaced/angular-qrcode
angular的特性就是动态更新
使用:
<qrcode data="string" version="2"
error-correction-level="Q" size="200"
color="#fff" background="#000"></qrcode>