-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (37 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Miniplay</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap">
<link href="style.css" rel="stylesheet">
</head>
<body>
<text><b>Miniplayer👩💻👩💻</b></text>
<div class="grid-container">
<div class="grid-item">
<h2> Share Screen</h2>
<p><button id="start">Start Capture</button> <button id="stop" style="margin: 0 0 0 10px;">Stop Capture</button></p>
<p style="font-size: 16px;">Click the Start Capture button to begin.<br>
</p>
<pre class="logs" id="log"></pre>
</div>
<div class="grid-item" style="width: 420px;">
<h2><strong>Stream Capture: </strong></h2>
<!--<video id="videoElement" controls style="box-shadow: inset; width: 300px; height:300px;" >
<source src="sample.mp4" type="video/mp4">
</video>-->
<video id="video" autoplay style="width: 400px; height: 300px; box-shadow: inset;"> </video>
<div style="color: black; float: right;">
<button id="pipButtonElement" style= "display: none; size: 70px;" type="button"class="button">
Enter view mode
</button>
</div>
</div>
<script src="script.js"> </script>
</div>
</body>
</html>