-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathindex.html
42 lines (30 loc) · 913 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Fresh Tilled Soil Video Conference | WebRTC jQuery Plug-in Demo</title>
<!-- Stylesheet Ressources -->
<link rel="stylesheet" href="css/fts-webrtc-styles.css">
</head>
<body>
<!-- main container -->
<div id="mainContainer" class="main-container">
<!-- local video -->
<video id="localVideo" class="local-video"></video>
<!-- remote video -->
<video id="remoteVideo" class="remote-video" autoplay></video>
<!-- video status & room entry bar -->
<div id="videoStatus" class="video-status">
</div>
</div>
<!-- JavaScript Ressources -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/jquery.fresh-tilled-soil-webrtc.js"></script>
<!-- Plugin Initialization -->
<script type="text/javascript">
$(function() {
$('#mainContainer').createVideoChat();
});
</script>
</body>
</html>