-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (52 loc) · 1.99 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
52
53
54
55
56
57
58
<!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">
<link href="style.css" rel="stylesheet" />
<title>Camera</title>
</head>
<body>
<div class="video-container">
<div class="frame" style="overflow: hidden; height: 100%;">
<video style="height: 100%;" autoplay></video>
</div>
</div>
<div class="filter-screen-parent">
</div>
<div id="record-video"><img src="https://img.icons8.com/flat-round/60/000000/record.png"/></div>
<div id="click-picture"><img src="https://img.icons8.com/ultraviolet/60/000000/camera.png"/></div>
<div class="filter-container">
<div style="background-color: #f4a2613d;" class="filter"></div>
<div style="background-color: #e85d0440;" class="filter"></div>
<div style="background-color: #ad5d6d7a;" class="filter"></div>
<div style="background-color: #2195f323;" class="filter"></div>
<div style="background-color: #4caf4f31;" class="filter"></div>
</div>
<div class="zoom">
<button class="zoom-in">zoom in</button>
<button class="zoom-out">zoom out</button>
</div>
<div class="show-gallery"></div>
<div class="timer">
<span class="minute">00</span>:<span class="second">00</span>
</div>
<!-- <div class="modal">
<div class="title">
<span style="margin-top: 10px; display: inline-block;">Gallery</span>
<span class="close-modal" style="float: right; margin-top: 10px; margin-right: 20px; cursor: pointer;">X</span>
</div>
<div class="gallery">
<div class="image">
<img src=''></img>
</div>
<div class="video">
<video src='' autoplay></video>
</div>
</div>
</div> -->
<script src="dbScript.js"></script>
<script src="script.js"></script>
</body>
</html>