怎么在html5中使用canvas實(shí)現(xiàn)手勢(shì)解鎖?針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡(jiǎn)單易行的方法。
巧家網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)公司!從網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營(yíng)維護(hù)。創(chuàng)新互聯(lián)公司從2013年創(chuàng)立到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)公司。
demo.html
手勢(shì)解鎖
index.js
(function(){ /** * 實(shí)現(xiàn)畫圓和劃線: * 1、添加事件touchstart、touchmove、touchend * 2、touchstart判斷是否點(diǎn)擊的位置處于圓內(nèi)getPosition,處于則初始化 * lastpoint、restPoint * 3、touchmove做的就是:畫圓drawPoint和畫線drawLine * * 實(shí)現(xiàn)自動(dòng)畫圓的效果 * 1、檢測(cè)手勢(shì)移動(dòng)的位置是否處于圓內(nèi) * 2、圓內(nèi)的話則畫圓 drawPoint * 3、已經(jīng)畫過實(shí)心圓的圓,無需重復(fù)檢測(cè) * * 實(shí)現(xiàn)解鎖成功: * 1、檢測(cè)路徑是否是對(duì)的 * 2、如果是對(duì)的就重置,圓圈變綠 * 3、不對(duì)也重置,圓圈變紅 * 4、重置 */ window.canvasLock = function(obj){ this.height = obj.height; this.width = obj.width; this.chooseType = obj.chooseType; }; // js方式動(dòng)態(tài)生成dom canvasLock.prototype.initDom = function(){ var wrap = document.createElement('div'); var str = '繪制解鎖圖案
'; wrap.setAttribute('style','position: absolute;top:0;left:0;right:0;bottom:0;'); var canvas = document.createElement('canvas'); canvas.setAttribute('id','canvas'); canvas.style.cssText = 'background-color: #305066;display: inline-block;margin-top: 15px;'; wrap.innerHTML = str; wrap.appendChild(canvas); var width = this.width || 300; var height = this.height || 300; document.body.appendChild(wrap); // 高清屏鎖放 canvas.style.width = width + "px"; canvas.style.height = height + "px"; canvas.width = width; canvas.height = height; } canvasLock.prototype.drawCle = function(x, y) { // 初始化解鎖密碼面板 this.ctx.strokeStyle = '#CFE6FF'; this.ctx.lineWidth = 2; this.ctx.beginPath(); this.ctx.arc(x, y, this.r, 0, Math.PI * 2, true); this.ctx.closePath(); this.ctx.stroke(); } canvasLock.prototype.createCircle = function() {// 創(chuàng)建解鎖點(diǎn)的坐標(biāo),根據(jù)canvas的大小來平均分配半徑 var n = this.chooseType; var count = 0; this.r = this.ctx.canvas.width / (2 + 4 * n);// 公式計(jì)算 this.lastPoint = []; this.arr = []; this.restPoint = []; var r = this.r; for (var i = 0 ; i < n ; i++) { for (var j = 0 ; j < n ; j++) { count++; var obj = { x: j * 4 * r + 3 * r, y: i * 4 * r + 3 * r, index: count }; this.arr.push(obj); this.restPoint.push(obj); } } this.ctx.clearRect(0, 0, this.ctx.canvas.width, this.ctx.canvas.height); for (var i = 0 ; i < this.arr.length ; i++) { // 畫圓函數(shù) this.drawCle(this.arr[i].x, this.arr[i].y); } //return arr; } // 程序初始化 canvasLock.prototype.init = function() { this.initDom(); this.canvas = document.getElementById('canvas'); this.ctx = this.canvas.getContext('2d'); this.touchFlag = false; // 1、確定半徑 // 2、確定每一個(gè)圓的中心坐標(biāo)點(diǎn) // 3、一行3個(gè)圓14個(gè)半徑,一行4個(gè)圓有18個(gè)半徑 this.createCircle(); this.bindEvent(); } canvasLock.prototype.bindEvent = function(){ var self = this; this.canvas.addEventListener("touchstart", function (e) { // 2、touchstart判斷是否點(diǎn)擊的位置處于圓內(nèi)getPosition,處于則初始化 // * lastpoint、restPoint // po有x和y,并且是相較于canvas邊距 var po = self.getPosition(e); console.log(po.x) // 判斷是否在圓內(nèi)的原理:多出來的這條 x/y < r 在圓內(nèi) for (var i = 0 ; i < self.arr.length ; i++) { if (Math.abs(po.x - self.arr[i].x) < self.r && Math.abs(po.y - self.arr[i].y) < self.r) { self.touchFlag = true; // lastPoint存放的就是選中的圓圈的x/y坐標(biāo)值 self.lastPoint.push(self.arr[i]); self.restPoint.splice(i,1); break; } } }, false); this.canvas.addEventListener("touchmove", function (e) { // touchmove做的就是:畫圓drawPoint和劃線drawLine if (self.touchFlag) { self.update(self.getPosition(e)); } }, false); this.canvas.addEventListener("touchend", function(e){ if (self.touchFlag) { self.storePass(self.lastPoint); setTimeout(function(){ self.reset(); }, 300); } }, false); } canvasLock.prototype.getPosition = function(e) {// 獲取touch點(diǎn)相對(duì)于canvas的坐標(biāo) var rect = e.currentTarget.getBoundingClientRect(); var po = { x: (e.touches[0].clientX - rect.left), y: (e.touches[0].clientY - rect.top) }; return po; } canvasLock.prototype.update = function(po) {// 核心變換方法在touchmove時(shí)候調(diào)用 this.ctx.clearRect(0, 0, this.ctx.canvas.width, this.ctx.canvas.height); // 重新畫9個(gè)圓圈 for (var i = 0 ; i < this.arr.length ; i++) { // 每幀先把面板畫出來 this.drawCle(this.arr[i].x, this.arr[i].y); } this.drawPoint();// 畫圓 this.drawLine(po);// 畫線 // 1、檢測(cè)手勢(shì)移動(dòng)的位置是否處于下一個(gè)圓內(nèi) // 2、圓內(nèi)的話則畫圓 drawPoint // 3、已經(jīng)畫過實(shí)心圓的圓,無需重復(fù)檢測(cè) for (var i = 0 ; i < this.restPoint.length ; i++) { if (Math.abs(po.x - this.restPoint[i].x) < this.r && Math.abs(po.y - this.restPoint[i].y) < this.r) { this.drawPoint(); this.lastPoint.push(this.restPoint[i]); this.restPoint.splice(i, 1); break; } } console.log(this.lastPoint) } canvasLock.prototype.drawLine = function(po) {// 解鎖軌跡 this.ctx.beginPath(); this.ctx.lineWidth = 3; this.ctx.moveTo(this.lastPoint[0].x, this.lastPoint[0].y); for (var i = 1 ; i < this.lastPoint.length ; i++) { this.ctx.lineTo(this.lastPoint[i].x, this.lastPoint[i].y); } this.ctx.lineTo(po.x, po.y); this.ctx.stroke(); this.ctx.closePath(); } canvasLock.prototype.drawPoint = function() { // 初始化圓心 for (var i = 0 ; i < this.lastPoint.length ; i++) { this.ctx.fillStyle = '#CFE6FF'; this.ctx.beginPath(); this.ctx.arc(this.lastPoint[i].x, this.lastPoint[i].y, this.r / 2, 0, Math.PI * 2, true); this.ctx.closePath(); this.ctx.fill(); } } // 1、檢測(cè)路徑是否是對(duì)的 // 2、如果是對(duì)的就重置,圓圈變綠 // 3、不對(duì)也重置,圓圈變紅 // 4、重置 canvasLock.prototype.storePass = function() { if (this.checkPass()) { document.getElementById('title').innerHTML = '解鎖成功'; this.drawStatusPoint('#2CFF26'); }else{ document.getElementById('title').innerHTML = '解鎖失敗'; this.drawStatusPoint('red'); } } canvasLock.prototype.checkPass = function() { var p1 = '123', p2 = ''; for (var i = 0 ; i < this.lastPoint.length ; i++) { p2 += this.lastPoint[i].index; } return p1 === p2; } canvasLock.prototype.drawStatusPoint = function(type) { for (var i = 0 ; i < this.lastPoint.length ; i++) { this.ctx.strokeStyle = type; this.ctx.beginPath(); this.ctx.arc(this.lastPoint[i].x, this.lastPoint[i].y, this.r, 0, Math.PI * 2, true); this.ctx.closePath(); this.ctx.stroke(); } } canvasLock.prototype.reset = function(){ this.createCircle(); } })();
關(guān)于怎么在html5中使用canvas實(shí)現(xiàn)手勢(shì)解鎖問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。