-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb-rtc.html
70 lines (60 loc) · 1.76 KB
/
web-rtc.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<meta charset="utf-8">
<head>
<title>miniWebRTC</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"
integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src='https://cdn.scaledrone.com/scaledrone.min.js' type='text/javascript'></script>
<script defer src="files/scripts/network.js"></script>
<style>
body {
box-sizing: border-box;
margin: 0;
padding: 13px;
display: flex;
flex-direction: column;
max-height: 100vh;
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
.members-count,
.members-list,
#chatlog {
border: 1px solid #e4e4e4;
padding: 15px;
margin-bottom: 15px;
}
#chatlog {
flex-shrink: 1;
overflow: auto;
}
.message {
padding: 5px 0;
}
.message .member {
display: inline-block;
}
.member {
padding-right: 10px;
position: relative;
}
.message-form {
display: flex;
flex-shrink: 0;
}
.message-form__input {
flex-grow: 1;
border: 1px solid #dfdfdf;
padding: 10px 15px;
font-size: 16px;
}
.message-form__button {
margin: 10px;
}
</style>
</head>
<body>
<div id="members-count">-</div>
<div id="members-list">-</div>
<input type="text" id="messageTextBox" placeholder="Type your message here" onkeydown="sendMessage(this.value, event)">
</body>