-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (37 loc) · 1.44 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>SyoChat!</title>
<script type="text/javascript" src="js/lib/jquery/jquery.min.js"></script>
<script type="text/javascript" src="js/lib/peerjs/peer.min.js"></script>
<script type="text/javascript" src="js/chat/chat.js"></script>
</head>
<body style="background-color: white;">
<div id="actions">
あなたが使用されている PeerJS ID は <br><br>
<span id="pid"></span>です。<br>
接続したいPeerJS ID: <br>
<input type="text" id="rid" placeholder="接続したい相手のID入れてね!">
<input class="button" type="button" value="接続" id="connect"><br><br>
<form id="send">
<input type="text" id="text" placeholder="メッセージをいれてね!"><input class="button" type="submit" value="送信">
</form>
</div>
<div id="wrap">
<div id="connections">
<span class="filler">
接続している人がおりません。
</span>
</div>
<div class="clear"></div>
</div>
<div id="box" style="background: #fff; font-size: 18px;padding:40px 30px; text-align: center;">
ここにドラッグしたファイルは、チャット相手と接続とき送信されます。
</div>
<div class="warning browser">
<div class="important">あなたのブラウザのバージョン: <span id="browsers"></span></div>
</div>
<button id="close">接続を閉じます。</button>
</body>
</html>