canvas手勢解鎖源碼

来源:https://www.cnblogs.com/chenyingying0/archive/2020/01/07/12159651.html
-Advertisement-
Play Games

先放圖 demo.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, use ...


先放圖

demo.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
    <title>手勢解鎖</title>
    <style type="text/css">
        body{
            text-align: center;
            background: #305066;
        }
        h4{
            color: #22C3AA;
        }
    </style>
</head>
<body>
    <script type="text/javascript" src="src/index.js"></script>
    <script type="text/javascript">
        // 1、生成背景
        // 2、title生成
        // 3、用js動態生成canvas標簽
        // 4、js方式動態生成h4標簽和canvas標簽
        new canvasLock({chooseType:3}).init();
    </script>
</body>
</html>

index.js

(function(){
        /**
         * 實現畫圓和劃線:
         * 1、添加事件touchstart、touchmove、touchend
         * 2、touchstart判斷是否點擊的位置處於圓內getPosition,處於則初始化
         * lastpoint、restPoint
         * 3、touchmove做的就是:畫圓drawPoint和畫線drawLine
         *
         * 實現自動畫圓的效果
         * 1、檢測手勢移動的位置是否處於圓內
         * 2、圓內的話則畫圓 drawPoint
         * 3、已經畫過實心圓的圓,無需重覆檢測
         *
         * 實現解鎖成功:
         * 1、檢測路徑是否是對的
         * 2、如果是對的就重置,圓圈變綠
         * 3、不對也重置,圓圈變紅
         * 4、重置
         */

        window.canvasLock = function(obj){
            this.height = obj.height;
            this.width = obj.width;
            this.chooseType = obj.chooseType;
        };

        // js方式動態生成dom
        canvasLock.prototype.initDom = function(){
            var wrap = document.createElement('div');
            var str = '<h4 id="title" class="title">繪製解鎖圖案</h4>';
            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() {// 創建解鎖點的坐標,根據canvas的大小來平均分配半徑

            var n = this.chooseType;
            var count = 0;
            this.r = this.ctx.canvas.width / (2 + 4 * n);// 公式計算
            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++) {
                // 畫圓函數
                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、確定每一個圓的中心坐標點
            // 3、一行3個圓14個半徑,一行4個圓有18個半徑
            this.createCircle();
            this.bindEvent();
        }

        canvasLock.prototype.bindEvent = function(){
            var self = this;
            this.canvas.addEventListener("touchstart", function (e) {
                // 2、touchstart判斷是否點擊的位置處於圓內getPosition,處於則初始化
                //          * lastpoint、restPoint
                
                // po有x和y,並且是相較於canvas邊距
                var po = self.getPosition(e);
                console.log(po.x)
                // 判斷是否在圓內的原理:多出來的這條 x/y < r 在圓內
                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坐標值
                        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點相對於canvas的坐標
            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時候調用
            this.ctx.clearRect(0, 0, this.ctx.canvas.width, this.ctx.canvas.height);

            // 重新畫9個圓圈
            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、檢測手勢移動的位置是否處於下一個圓內
            // 2、圓內的話則畫圓 drawPoint
            // 3、已經畫過實心圓的圓,無需重覆檢測
            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、檢測路徑是否是對的
        // 2、如果是對的就重置,圓圈變綠
        // 3、不對也重置,圓圈變紅
        // 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();
        }
})();

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • CSRF繞過後端Referer校驗分正常情況和不正常的情況,我們這裡主要討論開發在寫校驗referer程式時,不正常的情況下怎麼進行繞過。 正常情況 正常的情況指伺服器端校驗Referer的代碼沒毛病,那麼意味著前端是無法繞過的。 我之前考慮過的方案: JS修改Referer,失敗; 請求惡意網頁後 ...
  • 算數運算符算術運算符描敘運算符實例加+10 + 20 = 30減-10 – 20 = -10乘*10 * 20 = 600除/10 / 20 = 0.5取餘數%返回除法的餘數9%2=1浮點數精確度浮點數值的最高精度是 17 位小數console.log(0.07 * 100); // 7.00000... ...
  • 移動端屏幕適配 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"> 移動端屏幕適配與響應式的區別移動端屏幕適配 ...
  • 響應式佈局的原理xsmall <576pxsmall >=576pxmedium >=768pxlarge >=992pxxlarge >=1200px 接下來是效果圖 中屏及以上效果 移動端效果 方案一:使用柵格系統開發響應式頁面 index.html <!DOCTYPE html> <html ...
  • 實際開發中的像素:css像素設備像素比dpr=設備像素/css像素標清屏dpr=1 高清屏dpr=2縮放改變的是css像素大小PPI(每英寸的物理像素點)=根號(屏幕橫向解析度²+屏幕縱向解析度²)/屏幕對角線長度(單位英寸) 視口viewport <meta name="viewport" con ...
  • ©Copyright 蕃薯耀 2020-01-07 https://www.cnblogs.com/fanshuyao/ 一、問題描述: 使用jquery easyui combogrid時,當查詢列表沒有結果action返回 時,會報錯,錯誤如下: 二、解決方案: 當查詢結果為空時,預設返回: 這 ...
  • 年底了,最近公司也不是太忙,感覺今年互聯網行業都遇到寒冬,不在是前兩年像熱的發燙的賽道。這幾天完成公司項目系統的優化和升級,目前準備想開發一套前後端分離的系統。 現在java最新最火的技術要數springboot了,部門系統的架構一直是我在開發,當然中間也踩過一些坑其實都是一些很簡單的問題,隨之技術 ...
  • ©Copyright 蕃薯耀 2020-01-07 https://www.cnblogs.com/fanshuyao/ (如果你覺得文章對你有幫助,歡迎捐贈,^_^,謝謝!) ©Copyright 蕃薯耀 2020-01-07 https://www.cnblogs.com/fanshuyao/ ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...