-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
55 lines (47 loc) · 1.96 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
55
<!DOCTYPE html>
<head>
<title>SkyWay</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<script type="text/javascript" src="https://skyway.io/dist/0.3/peer.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div class="pure-g">
<!-- Video area -->
<div class="pure-u-2-3" id="video-container">
<video id="their-video" autoplay></video>
<video id="my-video" muted="true" autoplay></video>
</div>
<!-- Steps -->
<div class="pure-u-1-3">
<h2>SkyWay Video Chat</h2>
<!-- Get local audio/video stream -->
<div id="step1">
<p>カメラとマイクの利用を許可してください。</p>
<div id="step1-error">
<p>カメラまたはマイクにアクセスできません。ブラウザで利用が許可されているか確認して下さい。</p>
<a href="#" class="pure-button pure-button-error" id="step1-retry">メディアを再取得</a>
</div>
</div>
<!-- Make calls to others -->
<div id="step2">
<p>Your Peerid: <span id="my-id">...</span></p>
<h3>相手を呼び出す</h3>
<div class="pure-form">
<label for="contactlist">チャット可能なPeerID:</label>
<select id="contactlist" name="contact">
</select>
<a href="#" class="pure-button pure-button-success" id="make-call">Call</a>
</div>
</div>
<!-- Call in progress -->
<div id="step3">
<p>接続先:<span id="their-id">...</span></p>
<p><a href="#" class="pure-button pure-button-error" id="end-call">チャットを終了する</a></p>
</div>
</div>
</div>
</body>
</html>