-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (45 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="https://www.webrtc-experiment.com/RTCPeerConnection-v1.5.js"></script>
<script src="https://cdn.goinstant.net/v1/platform.min.js"></script>
<script src="javascripts/lodash.min.js"></script>
<script src="javascripts/d3.v3.min.js"></script>
<script src="javascripts/leap.min.js"></script>
<title>GoRTC</title>
<style>
#camContainers {
max-width: 785px;
float: left;
}
#board {
width: 640px;
float: right;
}
#shareBoard {
height: 480px;
}
</style>
</head>
<body>
<div id="wait">Please Wait</div>
<div id="camContainers">
<div id="localStream" class="wrapper" style="display: none">
<video autoplay></video>
<div></div>
</div>
</div>
<div id="board">
<canvas id="sharedBoard"></canvas>
<div id="chat">
<input placeholder="Chat Message Here" />
<div id="messages">
</div>
</div>
</div>
<script src="javascripts/main.js"></script>
</body>
</html>