-
Notifications
You must be signed in to change notification settings - Fork 1
/
backup.html
91 lines (76 loc) · 2.95 KB
/
backup.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<style>
html, body { position: absolute; width: 100%; height: 100%; background-color: #ffffff; margin: 0; padding: 0; font-family: Arial, sans-serif; font-size: 16px; color: #005f9c; overflow: auto; }
canvas { position: absolute; background-color: transparent; display: block; margin: 0; padding: 0; }
video { position: absolute; background-color: transparent; display: none; margin: 0; padding: 0; }
#_wrapper { position: absolute; width: 100%; height: 100%; }
#_content { position: absolute; width: 640px; height: 480px; background-color: #f7f7f7; margin: auto; top: 0; left: 0; right: 0; }
#_progressBar { position: absolute; width: 1px; height: 480px; background-color: #000000; margin: auto; top: 0; left: 0; }
#_subline { position: absolute; width: 640px; height: 40px; background-color: transparent; margin: auto; left: 0; right: 0; top: 490px; }
#_highlight { position: absolute; width: 640px; height: auto; background-color: transparent; margin: auto; left: 0; right: 0; top: 525px; font-size: 8pt; }
#_brfv4_logo { position: absolute; width: 200px; left: 0; bottom: 0; opacity: 0.5; }
#_stats { position: absolute; width: 80px; height: 48px; left: 0; top: 0; }
#_settingsLeft { position: absolute; width: 160px; height: 480px; background-color: transparent; }
#_settingsRight { position: absolute; width: 255px; height: 100%; background-color: transparent; right: 0; }
#_msg { position: absolute; width: 100%; height: 40px; background-color: transparent; bottom: 0; }
body { background: #000 }
.facebox {
position: absolute;
/* background: url("jaar.png") no-repeat; */
background-size: contain;
/* animation: rotate 5s linear infinite; */
z-index: 5;
opacity: 0.3;
}
.facebox2 {
position: absolute;
backdrop-filter: brightness(200%);
border-radius: 100%;
transform: scale(1.1);
z-index: 2;
}
.bg {
position: absolute;
background: #000;
z-index: 1;
opacity: 0.5;
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.infofacebox {
color: #fff;
position: absolute;
font-size: 90%;
padding: 15px;
border: 2px solid cyan;
z-index: 10;
}
</style>
<title>FaceMatch</title>
<script src="js/libs/createjs/preloadjs-0.6.2.min.js"></script>
<script src="js/BRFv4Demo.js"></script>
<script>
window.onload = brfv4Example.start;
</script>
</head>
<body>
<div id="_wrapper">
<div class="bg"></div>
<div id="_content">
<video id="_webcam"></video>
<canvas id="_imageData"></canvas>
<canvas id="_faceSub"></canvas>
<canvas id="_t3d"></canvas>
<canvas id="_f3d"></canvas>
<canvas id="_drawing"></canvas>
</div>
</div>
</body>
</html>