H5HandLock是纯原生js手势密码组件,仅12kb(未压缩)
无
<div id="handlock"></div>
var handLock = new HandLock({
el: document.getElementById('handlock'),
n: 3,
minLength: 4,
// pass: [0, 1, 2, 3, 4, 5],
// strokeColor: '#ffa726',
// fillColor: '#ffa726',
// successColor: '#2CFF26',
// errorColor: 'red',
})
handLock.on('msg', function (e) {
if (e.code === 200) {
// 成功
} else {
// 不成功
}
})
handLock.init();
handLock.on('msg', function (e) {
console.log('msg', e)
})
handLock.checkPass()
更多配置和用法,请参考examples