-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (24 loc) · 1007 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
<html>
<head>
<title>Example webrtc.io</title>
<link type="text/css" href="/style.css" rel="stylesheet"></link>
<script src="/webrtc.io.js"></script>
</head>
<body onload="init()">
<div id="videos">
<a href="https://github.com/webRTC"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" alt="Fork me on GitHub"></a>
<video id="you" class="flip" autoplay width="263" height="200" style="position: absolute; left: 0px; bottom: 0px;"></video>
</div>
<div id="chatbox">
<div id="hideShowMessages" class="button">toggle chat</div>
<div id="messages">
</div>
<input id="chatinput" type="text" placeholder="Message:"/>
</div>
<div class="buttonBox">
<div id="fullscreen" class="button">Enter Full Screen</div>
<div id="newRoom" class="button">Create A New Room</div>
</div>
<script src="/script.js"></script>
</body>
</html>