-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (57 loc) · 2.16 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
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Camera App</title>
<link type="image/png" sizes="32x32" rel="icon" href="./assets/camera.png">
<link rel="preload" as="image" fetchpriority="high" href="/assets/bgImage.webp" type="image/webp">
<style>
.filter {
flex: 1;
width: 100px;
background-image: url("./assets/bgImage.webp");
background-position: center;
background-size: 100% 100%;
background-repeat: no-repeat;
cursor: pointer;
}
</style>
<link rel="preload stylesheet" href="./index.css" />
<link rel="preload" href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
</head>
<body>
<div class="main-cont">
<div class="left">
<div class="filter-cont">
<div class="filter orange"></div>
<div class="filter pink"></div>
<div class="filter brown"></div>
<div class="filter transparent"></div>
</div>
<div class="timer-cont">
<h1 class="timer">00:00:00</h1>
</div>
</div>
<div class="video-cont middle">
<video autoplay></video>
</div>
<div class="right">
<div class="actions-cont">
<div title="Record Video" class="record-btn-cont">
<div class="record-btn"></div>
</div>
<div title="Capture Image" class="capture-btn-cont">
<div class="capture-btn"></div>
</div>
</div>
</div>
<a title="Gallery" id="gallery-icon" class="material-icons gallery" href="./gallery.html"><img
src="./assets/collections.png" width="30px" height="30px" alt="gallery" /></a>
<div class="filter-layer"></div>
<script src="https://unpkg.com/shortid-dist@1.0.5/dist/shortid-2.2.13.min.js"></script>
<script src="./db.js"></script>
<script src="./index.js"></script>
</div>
</body>
</html>