-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css" type="text/css">
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/samsunginternet/OneUI-Web/oui-css/oui.css"
>
<script src="index.js" type="module"></script>
<title>Folding the Web</title>
<script>
if (window.location.protocol === "http:")
window.location.protocol = "https:";
if (window.navigator.devicePosture.type !== undefined) window.navigator.devicePosture.type
</script>
</head>
<body>
<div class="video-container">
<!--Add video element-->
</div>
<div class="camera-controls">
<p class="msg">Unfold the future</p>
<canvas id="canvas" width="50" height="50"> </canvas>
<img id="photo" alt="Captured photo." width="100" height="100" />
<button id="snap" class="snap"></button>
<button id="flip" class="snap"></button>
</div>
</body>
</html>