-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (40 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Liveroom</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<main id="left">
<div class="video-wrapper">
<video id="video" poster="/images/poster.png" autoplay muted controls></video>
</div>
<nav>
<form>
<select name='mode' onchange='this.form.submit()'>
<option value='live'>直播</option>
<option value=''>点播</option>
<option value='link'>地址</option>
</select>
<input placeholder="昵称" />
<button>↲</button>
</form>
</nav>
</main>
<aside id="right">
<ul id="messages"></ul>
<footer>
<form id="chat" action="">
<input id="nickname" style="width: 20%;" placeholder="昵称" value="♪" autocomplete="off" />
<input id="message" style="width: 70%;" placeholder="消息" autocomplete="off" autofocus/>
<button>↲</button>
</form>
</footer>
</aside>
<script src="/socket.io/socket.io.js"></script>
<script src="js/mpegts.js"></script>
<script src="js/main.js"></script>
</body>
</html>