-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (48 loc) · 1.44 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="pt-br">
<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">
<script src='https://cdn.scaledrone.com/scaledrone.min.js' type='text/javascript'></script>
<title>Chat e Video</title>
</head>
<body>
<style>
/* .welcome{
text-align: center;
padding: 10px 0;
} */
body{
display: flex;
height: 100vh;
margin: 0;
align-items: center;
justify-content: center;
padding: 0 50px;
}
video{
max-width: calc(50% - 100px);
margin: 0 50px;
box-sizing: border-box;
border-radius: 4px;
padding: 0;
border: 1px solid #ccc;
}
.title{
position: fixed;
top: 20px;
left: 50%;
transform: translateX(-50%);
font-size: 30px;
}
</style>
<!-- <div class="welcome">
<h2>Bem vindo ao nosso Chat em tempo real!</h2>
</div> -->
<div class="title">Bem vindo ao nosso Chat em tempo real!</div>
<video src="" id="localVideo" autoplay muted></video>
<video src="" id="remoteVideo" autoplay muted></video>
<script src="script.js"></script>
</body>
</html>