1Introduction
- description:二维码 UI 生成器
- author:ydr.me
- create:2016年06月04日14:09:36
- update:2017年04月27日15:06:04
- github:https://github.com/blearjs/blear.ui.qrcode
2Example
var QRCode = require('blear.ui.qrcode');
new QRCode({
el: '#demo'
}).render('hello');
3Static
3.1.defaults
- 类型:
Object
- 说明:默认配置
3.2.defaults.el
- 类型:
Object
- 说明:渲染容器
3.3.defaults.size
- 类型:
Number
- 说明:尺寸
- 默认:
256
3.4.defaults.background
- 类型:
String
- 说明:背景色
- 默认:
"#fff"
3.5.defaults.foreground
- 类型:
String
- 说明:前景色
- 默认:
"#000"
4new QRCode(options)
实例化一个二维码渲染 UI,options
默认值为 .defaults
。
5Prototype
原型属性、方法
5.1#render(text): this
将文本渲染为二维码。
5.1.1text
- 类型:
String
- 说明:文本
6Events
无。
7Dependencies
8Reference
无。