-
Notifications
You must be signed in to change notification settings - Fork 0
/
screen-recorder.html
49 lines (42 loc) · 1.19 KB
/
screen-recorder.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Matrix</title>
<style>
body {
margin: 0;
border: 0;
padding: 0;
background: #000;
}
canvas {
position: absolute;
margin-top: 0;
z-index: -1;
}
</style>
<link rel="stylesheet" href="color_egg/css/style.css" />
<link rel="stylesheet" href="color_egg/css/iconfont.css" />
</head>
<body>
<canvas id="canvas" width="800" height="2000" style="background: rgb(20, 17, 17)"></canvas>
<div id="bigBox">
<h1>录屏Api</h1>
<div class="beizhu">
<p>
这是一个在线录屏api,可以方便进行录屏。
</p>
<p>
<div class="start-screen-recording-big recording-style-black">
<div>
<div class="rec-dot"></div><span>开始录屏</span>
</div>
</div>
</p>
</div>
</div>
<script type="text/javascript" src="color_egg/bundle.js"></script>
<script src="https://api.apowersoft.cn/screen-recorder?lang=zh" defer></script>
</body>
</html>