-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
84 lines (76 loc) · 2.01 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="shortcut icon" href="./static/images/favicon.ico" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Perlou Home</title>
<meta name="title" content="Perlou - Software Engineer">
<style>
body {
background-color: rgb(0, 0, 0);
margin: 0;
}
#webgl {
pointer-events: none;
}
#ui-app {
width: 100%;
height: 100%;
position: relative;
display: flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
}
#ui {
position: absolute;
overflow: hidden;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
}
#monitor-videos {
pointer-events: none;
position: 'absolute';
opacity: 0;
width: 0;
height: 0;
top: 0;
left: 0;
}
#css {
cursor: pointer;
}
#ui-interactive {
position: absolute;
top: 0;
left: 0;
width: 256px;
}
video {
position: absolute;
top: 0;
pointer-events: none;
}
</style>
</head>
<body>
<div id="css"></div>
<div id="webgl"></div>
<div id="overlay"></div>
<div id="ui-interactive"></div>
<div id="ui"></div>
<div id="monitor-videos">
<video id="video-1" muted loop autoplay width="0" height="0" src="./static/textures/monitor/video/base-static.mp4"
style="opacity: 0;"></video>
<video id="video-2" muted loop autoplay width="0" height="0"
src="./static/textures/monitor/video/static-texture-layer.mp4" style="opacity: 0;"></video>
</div>
</body>
</html>