-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.2 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
<html>
<head>
<link href="./index.css" rel="stylesheet" />
<script src="./main.js"></script>
</head>
<body>
<div>
<div class="header">
<h1>Live</h1>
<button id="join-or-leave-call"></button>
</div>
<video id="live-cam" autoplay muted playsinline></video>
<div>
Device:
<select id="devices"></select>
</div>
<div class="header">
<h1>Preview</h1>
<button id="toggle-preview">Toggle</button>
</div>
<video id="preview-cam" autoplay muted playsinline></video>
<div>
Background effect:
<select id="effects">
<option value="none">None</option>
<optgroup label="Blur">
<option value="blur-standard">Standard</option>
<option value="blur-soft">Soft</option>
<option value="blur-strong">Strong</option>
</optgroup>
<optgroup label="Image">
<option value="image-1">Image 1</option>
<option value="image-2">Image 2</option>
<option value="image-3">Image 3</option>
</optgroup>
</select>
<button id="apply-effect">Apply</button>
</div>
</div>
</body>
</html>