-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathanswer.html
40 lines (37 loc) · 1.16 KB
/
answer.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
<!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>EaseRTC</title>
<!--icons-->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons+Round">
<link rel="shortcut icon" href="./assets/EaseRTC_logo.png" type="image/x-icon">
<!--css-->
<link rel="stylesheet" href="./offer.css">
<!--js-->
<script src="./EaseRTC.js" defer></script>
<script src="./answer.js" defer></script>
</head>
<body>
<div class="videosHolder">
<video id="local"></video>
<video id="remote"></video>
</div>
<div class="options">
<span style="display: none;" class="material-icons-round">
mic
</span>
<span class="material-icons-round">
mic_off
</span>
<span style="display: none;" class="material-icons-round">
videocam
</span>
<span class="material-icons-round">
videocam_off
</span>
</div>
</body>
</html>