手势解锁是app上常见的解锁方式,相比输入密码方式操作起来要方便许多。下面展示如何基于微信小程序实现手机解锁。最终实现效果如下图:

整个功能基于canvas实现,首先添加画布组件,并设定样式

<!--index.wxml-->
<view class="container"><canvas canvas-id="id-gesture-lock" class="gesture-lock" bindtouchstart="onTouchStart"bindtouchmove="onTouchMove" bindtouchend="onTouchEnd"></canvas>
</view>.gesture-lock {margin: 100rpx auto;width: 300px;height: 300px;background-color: #ffffff;
}

手势解锁实现代码在gesture_lock.js中(完整源码地址见末尾)。

初始化

    constructor(canvasid, context, cb, opt){this.touchPoints = [];this.checkPoints = [];this.canvasid = canvasid;this.ctx = context;this.width = opt && opt.width || 300; //画布长度this.height = opt && opt.height || 300; //画布宽度this.cycleNum = opt && opt.cycleNum || 3;this.radius = 0;  //触摸点半径this.isParamOk = false;this.marge = this.margeCircle = 25; //触摸点及触摸点和画布边界间隔this.initColor = opt && opt.initColor || '#C5C5C3';   this.checkColor = opt && opt.checkColor || '#5AA9EC';this.errorColor = opt && opt.errorColor || '#e19984';this.touchState = "unTouch";this.checkParam();this.lastCheckPoint = null;if (this.isParamOk) {// 计算触摸点的半径长度this.radius = (this.width - this.marge * 2 - (this.margeCircle * (this.cycleNum - 1))) / (this.cycleNum * 2)this.radius = Math.floor(this.radius);// 计算每个触摸点的圆心位置this.calCircleParams();}this.onEnd = cb; //滑动手势结束时的回调函数}

主要设置一些参数,如canvas的长宽,canvas的context,手势锁的个数(3乘3, 4乘4),手势锁的颜色,手势滑动结束时的回调函数等。并计算出手势锁的半径。

计算每个手势锁的圆心位置

    calCircleParams() {let n = this.cycleNum;let count = 0;for (let i = 0; i < n; i++) {for (let j = 0; j < n; j++){count++;let touchPoint = {x: this.marge + i * (this.radius * 2 + this.margeCircle) + this.radius,y: this.marge + j * (this.radius * 2 + this.margeCircle) + this.radius,index: count,check: "uncheck",}this.touchPoints.push(touchPoint)}}}

绘制手势锁

     for (let i = 0; i < this.touchPoints.length; i++){this.drawCircle(this.touchPoints[i].x, this.touchPoints[i].y, this.radius, this.initColor)}this.ctx.draw(true);

接下来就是识别用户的滑动行为,判断用户划过了哪些圆圈,进而识别出用户的手势。

touchstarttouchmove事件中检测触发并更新画布

    onTouchStart(e) {// 不识别多点触控if (e.touches.length > 1){this.touchState = "unTouch";return;}this.touchState = "startTouch";this.checkTouch(e);let point = {x:e.touches[0].x, y:e.touches[0].y};this.drawCanvas(this.checkColor, point);}onTouchMove(e) {if (e.touchState === "unTouch") {return;}if (e.touches.length > 1){this.touchState = "unTouch";return;}this.checkTouch(e);let point = {x:e.touches[0].x, y:e.touches[0].y};this.drawCanvas(this.checkColor, point);}

检测用户是否划过某个圆圈

    checkTouch(e) {for (let i = 0; i < this.touchPoints.length; i++){let point = this.touchPoints[i];if (isPointInCycle(e.touches[0].x, e.touches[0].y, point.x, point.y, this.radius)) {if (point.check === 'uncheck') {this.checkPoints.push(point);this.lastCheckPoint = point;}point.check = "check"return;}}}

更新画布

     drawCanvas(color, point) {//每次更新之前先清空画布this.ctx.clearRect(0, 0, this.width, this.height);//使用不同颜色和形式绘制已触发和未触发的锁for (let i = 0; i < this.touchPoints.length; i++){let point = this.touchPoints[i];if (point.check === "check") {this.drawCircle(point.x, point.y, this.radius, color);this.drawCircleCentre(point.x, point.y, color);}else {this.drawCircle(this.touchPoints[i].x, this.touchPoints[i].y, this.radius, this.initColor)}}//绘制已识别锁之间的线段if (this.checkPoints.length > 1) {let lastPoint = this.checkPoints[0];for (let i = 1; i < this.checkPoints.length; i++) {this.drawLine(lastPoint, this.checkPoints[i], color);lastPoint = this.checkPoints[i];}}//绘制最后一个识别锁和当前触摸点之间的线段if (this.lastCheckPoint && point) {this.drawLine(this.lastCheckPoint, point, color);}this.ctx.draw(true);}

当用户滑动结束时调用回调函数并传递识别出的手势

    onTouchEnd(e) {typeof this.onEnd === 'function' && this.onEnd(this.checkPoints, false);}onTouchCancel(e) {typeof this.onEnd === 'function' && this.onEnd(this.checkPoints, true);}

重置和显示手势错误

    gestureError() {this.drawCanvas(this.errorColor)}reset() {for (let i = 0; i < this.touchPoints.length; i++) {this.touchPoints[i].check = 'uncheck';}this.checkPoints = [];this.lastCheckPoint = null;this.drawCanvas(this.initColor);}

如何调用
在onload方法中创建lock对象并在用户触摸事件中调用相应方法

  onLoad: function () {var s = this;this.lock = new Lock("id-gesture-lock", wx.createCanvasContext("id-gesture-lock"), function(checkPoints, isCancel) {console.log('over');s.lock.gestureError();setTimeout(function() {s.lock.reset();}, 1000);}, {width:300, height:300})this.lock.drawGestureLock();console.log('onLoad')var that = this//调用应用实例的方法获取全局数据app.getUserInfo(function(userInfo){//更新数据that.setData({userInfo:userInfo})that.update()})},onTouchStart: function (e) {this.lock.onTouchStart(e);},onTouchMove: function (e) {this.lock.onTouchMove(e);},onTouchEnd: function (e) {this.lock.onTouchEnd(e);}

源码地址:https://github.com/zjxfly/wx-gesture-lock/

hello, 我是疯狂早茶,懂点设计,懂点产品,码农一枚,欢迎互联网技术,产品从业者,爱好者关注交流。我的微信公众号crazytea1,欢迎关注

微信小程序开发教程-手势解锁相关推荐

  1. 微信小程序开发分销制度济南_花店微信小程序开发教程

    如何将自己的鲜花商品快速配送出去,避免鲜花过期浪费,是很多传统花店商家的难题.不过随着微信小程序的出现,这一难题也渐渐得到了解决.花店商家可以通过自己的小程序商城,打通线上渠道,可以加大推广.扩大销量 ...

  2. 微信小程序开发教程第七章:微信小程序编辑名片页面开发

    前面我们更新了六篇的微信小程序开发教程,现在更新第七章:微信小程序编辑名片页面开发,(第一二章:微信小程序开发教程,第三四章:微信小程序项目结构以及配置&微信小程序首页面开发,第五章:微信小程 ...

  3. 微信小程序开发教程第八章:微信小程序分组开发与左滑功能实现

    接着上面微信小程序开发教程第八章:微信小程序分组开发与左滑功能实现.(第一二章:微信小程序开发教程,第三四章:微信小程序项目结构以及配置&微信小程序首页面开发,第五章:微信小程序名片夹详情页开 ...

  4. 小程序开发用什么编程语言_微信小程序开发教程是什么?费用多少?

    微信小程序如今已经非常常见,渗透到了我们日常生活的方方面面,包括生活服务.出行.点餐.电商购物.企业展示--商家可以开发适合自己行业的小程序,以吸引线上用户,同时提高自身服务运营效率.不过这些不同种类 ...

  5. 微信小程序开发语言(微信小程序开发教程)详细步骤

    微信小程序开发语言 开发微信小程序用什么语言 1.微信小程序开发所需要的语言比较特别,首先介绍一下需要使用到的文件类型大致分为:WXML(WeiXin Mark Language 微信标记语言).WX ...

  6. 零基础入门,花生壳骨灰级微信小程序开发教程

    微信小程序早已成为企业运营必不可少的一部分,对于小程序的开发需求也只增不减,而一个小程序在使用过程中是否流畅,也关系者用户体验度. 微信小程序的优势和特点: 一.不占内存 现在很多人都会遇到手机内存不 ...

  7. 微信小程序装修解决方案ppt_微信小程序开发教程.ppt

    微信小程序开发教程.ppt 从开发CMS系统学起 从入门到精通的微信小程序开发教程 学微信小程序开发 从实践中学习是开发者最好最快的学习方法.本教程将和大家从零开始 一步一步搭建微信小程序CMS系统, ...

  8. 微信小程序开发教程:项目五导航组件 课后习题

    <微信小程序开发教程>主编/黄寿孟 易芳 陶延涛 湖南大学出版社 目录 一.单选题 二.多选题 三.判断题 四.填空题 五.简答题 简述如何动态设置窗口的背景色. 六.编程题 1.设计一款 ...

  9. 微信小程序开发教程:项目一微信小程序入门 课后习题

    <微信小程序开发教程>主编/黄寿孟 易芳 陶延涛 湖南大学出版社 目录 一.单选题 二.多选题 三.判断题 四.填空题 五.简答题 1.请简述微信开发者工具中调试器功能. 2.请简述微信小 ...

最新文章

  1. Mysql高性能优化规范建议,太厉害了!
  2. CDT源代码框架分析改造 线程对象的改造 添加标签 区分断点跟跟踪点
  3. go corn定时器
  4. 怎么修改谷歌浏览器文件提交按钮样式_使用css自定义input file浏览按钮样式
  5. 《学习之道》第九章不要突击工作
  6. css如何实现背景透明,文字不透明?
  7. 第一个PowerShell脚本——PowerShell三分钟(九)
  8. mysql old key files_mysql出现“Incorrect key file for table”解决办法
  9. java动态录音_java实现动态录音,声卡有声音进来就自动录音
  10. [COGS2639]偏序++
  11. OpenGL ES之GLSurfaceView学习一:介绍
  12. 2022年,教你跳过验证快速创建Google账户!
  13. 食物链 (利用并查集的两种解决方法)
  14. 小米无线路由器服务器用户名和密码忘了,小米路由器无线密码(wifi密码)忘记了怎么办? | 192路由网...
  15. 那些吸引眼球的微信标题你会么?
  16. 【证明题】(一)微分中值定理
  17. 微信支付宝多商户解决方案
  18. SpringCloud实现微服务商城架构开源项目
  19. GRBL二:串口控制命令及代码解析(转载)
  20. 【JAVA枚举类型】

热门文章

  1. 芒果Tv服务器维护,芒果tv怎么看直播?芒果tv直播看不了怎么办?
  2. python如何将列表去掉引号_如何将手机打造成 Python 开发利器?
  3. 简单易用的PDF转SVG程序
  4. 关闭云鲸拖地机器人风干_评测云鲸拖地机器人:看它拖地后怎么自己洗抹布的?|未来科技范...
  5. Android发展史
  6. GUI 剖析之 控件篇1)按钮控件
  7. F4V格式怎么转换成MP4格式(在线转换教程)
  8. 在Linux下将PNG和JPG批量互转的四种方法
  9. 解决Windows版Git出现templates not found的问题
  10. 快速查看Gradle项目包依赖情况