H5lock-图形锁

本文介绍H5lock,一个用于实现图形锁的JavaScript库。通过H5lock,开发者可以轻松为Web应用添加安全的图形解锁功能,增强用户体验。
摘要由CSDN通过智能技术生成

在这里插入图片描述

<!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>H5lock-A5源码</title>
    <style type="text/css">
        body {
    
            text-align: center;
            background-color: #305066;
        }
        .title {
    
            color: #22C3AA;
        }
    </style>
</head>
<body>

<script type="text/javascript" src="H5lock.js"></script>
<script type="text/javascript">
new H5lock({
    
    chooseType: 4
}).init();
</script>

</body>
</html>
(function(){
   

        window.H5lock = function(obj){
   
            this.height = obj.height;
            this.width = obj.width;
            this.chooseType = Number(window.localStorage.getItem('chooseType')) || obj.chooseType;
        };
 
 
        H5lock.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();
        }
        H5lock.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();
            }
        }
        H5lock.prototype.drawStatusPoint = function(type) {
    // 初始化状态线条
            for (var i = 0 ; i < this.lastPoint.length ; i++) {
   
                this.ctx.strokeStyle = type
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值