-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
33 lines (31 loc) · 894 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="main.js"></script>
</head>
<body>
<div id="streams">
<snp-stream id="stream1"></snp-stream>
<snp-stream id="stream2"></snp-stream>
<snp-stream id="stream3"></snp-stream>
<snp-stream id="stream4"></snp-stream>
<snp-stream id="stream5"></snp-stream>
<snp-stream id="stream6"></snp-stream>
<snp-stream id="stream7"></snp-stream>
<snp-stream id="stream8"></snp-stream>
<snp-stream id="stream9"></snp-stream>
</div>
<select id="layout-select" style="position:absolute;right:10px; bottom:10px; z-index:1000">
<option value="1x1">1x1</option>
<option value="2x1">2x1</option>
<option value="1x2">1x2</option>
<option value="2x2">2x2</option>
<option value="3x3">3x3</option>
</select>
<div class="stats">
<textarea class="stat-log"></textarea>
</div>
</body>
</html>