index.html 1007 B

123456789101112131415161718192021222324252627
  1. <html>
  2. <head>
  3. <title>Example webrtc.io</title>
  4. <link type="text/css" href="/style.css" rel="stylesheet"></link>
  5. <script src="/webrtc.io.js"></script>
  6. </head>
  7. <body onload="init()">
  8. <div id="videos">
  9. <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>
  10. <video id="you" class="flip" autoplay width="263" height="200" style="position: absolute; left: 0px; bottom: 0px;"></video>
  11. </div>
  12. <div id="chatbox">
  13. <div id="hideShowMessages" class="button">toggle chat</div>
  14. <div id="messages">
  15. </div>
  16. <input id="chatinput" type="text" placeholder="Message:"/>
  17. </div>
  18. <div class="buttonBox">
  19. <div id="fullscreen" class="button">Enter Full Screen</div>
  20. <div id="newRoom" class="button">Create A New Room</div>
  21. </div>
  22. <script src="/script.js"></script>
  23. </body>
  24. </html>