-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (62 loc) · 2.17 KB
/
index.html
File metadata and controls
69 lines (62 loc) · 2.17 KB
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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="index.css" />
<link rel="icon" href="./favicon.ico" />
</head>
<body>
<div class="main">
<div class="actionRowsWrap">
<div class="actionRow">
<label>
AvatarID
<input id="avatarID" type="text" value=""/>
</label>
<label>
VoiceID
<input id="voiceID" type="text" value="750533f27c5649979110086898518280"/>
</label>
<button id="newBtn">New</button>
<button id="startBtn">Start</button>
<button id="closeBtn">Close</button>
</div>
<div class="actionRow">
<label>
Message
<input id="taskInput" type="text" />
</label>
<button id="repeatBtn">Repeat</button>
<button id="talkBtn">Send</button>
<button id="whisperBtn">Enable/Disable Voice</button>
<label>
Background (CSS)
<input
type="text"
id="bgInput"
value='url("https://img.freepik.com/free-photo/modern-tokyo-street-background_23-2149394883.jpg?t=st=1713963727~exp=1713967327~hmac=d5821266810f2eeafa3e65c1f252f78edd12f8c8c7b7bb6d53279f9243ad1867&w=740") center / contain no-repeat'
/>
</label>
<div class="actionRow switchRow hide" id="bgCheckboxWrap">
<div class="switchWrap">
<span>Remove background</span>
<label class="switch">
<input type="checkbox" id="removeBGCheckbox" />
<span class="slider round"></span>
</label>
</div>
</div>
</div>
</div>
<p id="status"></p>
<div class="videoSectionWrap">
<div class="videoWrap">
<img src="conflogo.png" alt="Left Image" class="side-image">
<video id="mediaElement" class="videoEle show" autoplay></video>
<canvas id="canvasElement" class="videoEle hide"></canvas>
<img src="conflogo.png" alt="Left Image" class="side-image">
</div>
</div>
</div>
<script type="module" src="index.js"></script>
</body>
</html>