-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
32 lines (30 loc) · 1.09 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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mediapipe-Selfie-Segmentation</title>
</head>
<body>
<header>
<div class="hint">
<p>該網站需要存取你的相機</p>
<span>This website needs access to your camera.</span>
</div>
</header>
<main class="main">
<div class="videoContainer">
<video class="localVideo" autoplay controls playsinline muted></video>
</div>
<div class="buttons">
<button class="turnCameraOnButton" type="type">Turn on camera</button>
<button class="removeBackgroundButton" type="type">Turn on virtual backgrounds</button>
<button class="turnCameraOffButton" type="type">Turn off camera</button>
</div>
<section class="sectionCustomImages"></section>
<input class="uploadInput" accept="image/*" type="file" disabled />
</main>
<script type="module" src="./main.js"></script>
</body>
</html>