-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css"
integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="videoContainer">
<video autoplay="true"></video>
</div>
<div class="filter-container">
<div class="filter" style="background-color: #e5503942; background-blend-mode: color-burn;"></div>
<div class="filter" style="background-color: #1e379944; background-blend-mode: color-burn;"></div>
<div class="filter" style="background-color: #f6b83b23; background-blend-mode: color-burn;"></div>
<div class="filter" style="background-color: #07999227; background-blend-mode: color-burn;"></div>
<div class="filter" style="background-color: #b7e9943d; background-blend-mode: color-burn;"></div>
<div class="filter"></div>
</div>
<button id="record">
<div></div>
</button>
<button id="capture">
<div></div>
</button>
<div id="gallery"><i class="fas fa-photo-video"></i></div>
<div class="zoom-container">
<div class="zoom-in"><i class="fas fa-plus"></i></div>
<div class="zoom-out"><i class="fas fa-minus"></i></div>
</div>
</body>
<script src="DBscript.js"></script>
<script src="script.js"></script>
</html>