-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
47 lines (43 loc) · 822 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Live Chat</title>
<style>
#video, canvas {
max-width: 500px;
transform: rotateY(180deg);
-webkit-transform:rotateY(180deg);
-moz-transform:rotateY(180deg);
}
#capture {
max-width: 300px;
}
</style>
</head>
<body>
<header>
<h1>Live Chat</h1>
<nav>
<form id="join" action="">
<input type="text" name="username" placeholder="username" required>
<button type="submit">join</button>
</form>
</nav>
</header>
<div class="container">
<div>
<ul id="userList"></ul>
</div>
<div>
<video id="video" autoplay></video>
</div>
<canvas id="capture"></canvas>
<ul id="videoList"></ul>
</div>
<footer>
copyright: mit license
</footer>
<script src="dist/bundle.js"></script>
</body>
</html>