-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
58 lines (58 loc) · 1.37 KB
/
demo.html
File metadata and controls
58 lines (58 loc) · 1.37 KB
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
58
<!DOCTYPE html>
<html>
<title>DEMO</title>
<link href="./password-forge.css" rel="stylesheet">
<style>
input {
width: 100px;
font-size: 16px;
}
</style>
<script src="./detect.js"></script>
<body>
<table>
<tr>
<td>
使用 password-forge
</td>
<td>
<input type="text" class="password-forge-disc" value="123456">
</td>
<td>
<input type="text" class="password-forge-circle" value="123456">
</td>
<td>
<input type="text" class="password-forge-square" value="123456">
</td>
</tr>
<tr>
<td>
直接使用 password-forge 字体
</td>
<td>
<input type="text" style="font-family: text-security-disc" value="123456">
</td>
<td>
<input type="text" style="font-family: text-security-circle" value="123456">
</td>
<td>
<input type="text" style="font-family: text-security-square" value="123456">
</td>
</tr>
<tr>
<td>
使用原生 -webkit-text-security
</td>
<td>
<input type="text" style="-webkit-text-security: disc" value="123456">
</td>
<td>
<input type="text" style="-webkit-text-security: circle" value="123456">
</td>
<td>
<input type="text" style="-webkit-text-security: square" value="123456">
</td>
</tr>
</table>
</body>
</html>