UNPKG

1.36 kBHTMLView Raw
1<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <title>Holla Test</title>
5 <script src="http://code.jquery.com/jquery.min.js"></script>
6 <script src="holla.js"></script>
7 <script src="test.js"></script>
8 <style>
9 body {
10 height: 100%;
11 width: 100%;
12 background-color: #040;
13 background: url(http://subtlepatterns.subtlepatterns.netdna-cdn.com/patterns/low_contrast_linen.png);
14 }
15 video {
16 box-shadow: 0px 0px 8px 1px #222;
17 width: 460px;
18 }
19 #videos {
20 float: left;
21 }
22 .flip {
23 transform: rotateY(180deg);
24 -webkit-transform: rotateY(180deg);
25 -ms-transform: rotateY(180deg);
26 -moz-transform: rotateY(180deg);
27 -o-transform: rotateY(180deg);
28 }
29 </style>
30 </head>
31 <body>
32 <input id="whoAmI" type="text" placeholder="Who are you?"></input>
33 <input id="whoCall" type="text" placeholder="Who do you want to call?"></input>
34 <button id="hangup">Hangup</button>
35 <br/>
36 <div id="videos">
37 <video id="me" autoplay="true" muted></video>
38 <br/>
39 <video id="them" autoplay="true"></video>
40 </div>
41 <div id="messages">
42 <pre><code id="chat"></code></pre>
43 <br/>
44 <input id="whatSay" type="text" placeholder="Type your chat message here"></input>
45 </div>
46 </body>
47</html>
\No newline at end of file