-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (45 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="Description" content="Enter your description here"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.0.0-beta1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
<title>Hello World</title>
<style>
.wrapper{
width: 300px;
height: 300px;
}
.recording{
display: flex;
height: 250px;
justify-content: center;
align-items: center;
padding-bottom: 50px;
}
.video{
cursor: pointer;
}
</style>
</head>
<body>
<div class="wrapper text-center">
<h3 class="mt-3 mb-3">Simple Screen Recorder</h3>
<div id="recording" class="recording text-center">
<button class="btn btn-primary" id="start">Start Recording</button>
<button class="btn btn-danger" id="stop">Stop Recording</button>
</div>
<div class="mt-2" id="editing">
<div class="img-thumbnail m-2">
<video style="width: 100%;" autoplay loop></video>
</div>
<button class="btn btn-success" id="download">Download</button>
<button class="btn btn-danger" id="remove">Remove</button>
</div>
</div>
<script src="./src/main.js"></script>
</body>
</html>