-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglindex.html
57 lines (56 loc) · 1.15 KB
/
glindex.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!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>
body {
background-color: #F0F0F2;
text-align: center;
}
div {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
/*#title {
color: #252525;
margin: 0;
background-color: #F8F8F8;
border-bottom: 1px solid #BCBCBC;
padding: 20px 0;
}*/
#gesLock {
background-color: #F0F0F2;
display: inline-block;
margin-top: 40px;
}
#tip {
color: #252525;
margin: 20px;
}
form {
margin: 40px 0 0 -30%;
}
label {
margin-top: 20px;
display: block;
}
</style>
</head>
<body>
<div>
<!-- <h2 id="title">手势密码</h2> -->
<canvas id="gesLock" width="300" height="300"></canvas>
<p id="tip">请输入手势密码</p>
<form action="#">
<label><input type="radio" name="password" id="setps" checked="checked">设置密码</label>
<label><input type="radio" name="password" id="verps">验证密码</label>
</form>
</div>
<script type="text/javascript" src="gestlockL.js"></script>
</body>
</html>