-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroom.html
26 lines (25 loc) · 875 Bytes
/
room.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
<!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>rty test</title>
<script src="./js/rem.js"></script>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<div class="room">
<video id="localVideo" autoplay playsinline muted></video>
<video id="remoteVideo" autoplay playsinline></video>
<div id="leave" onclick="leave()">挂断</div>
</div>
<script src="./js/socket.2.0.3.js"></script>
<script src="./js/adapter.js"></script>
<script src="./js/room.js"></script>
<script type="text/javascript" src="./js/vconsole.min.js"></script>
<script>
var vConsole = new VConsole();
</script>
</body>
</html>