-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (54 loc) · 1.85 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">
<title>Document</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="video-cont">
<!-- if u add control in this way then only pause button display autoplay also there -->
<!-- <video controls src=""></video> -->
<video autoplay src=""></video>
</div>
<!-- for recording -->
<div class="action-cont">
<div class="record-btn-cont">
<div class="record-btn ">Record
</div>
</div>
<div class="capure-btn-cont">
<div class="capture-btn ">Capture</div>
</div>
</div>
<div class="timer-cont">
<h1 class="timer">00:00:00</h1>
</div>
<div class="filter-cont">
<div class="filter orange"></div>
<div class="filter brown"></div>
<div class="filter pink"></div>
<div class="filter transparent"></div>
</div>
<!-- ye jo filter layer isse upar mai lgavu ga ye sb ke upr fir dekhe ga -->
<div class="filter-layer"></div>
<span class="material-icons gallery">
collections
</span>
<script src="https://unpkg.com/[email protected]/dist/shortid-2.2.13.min.js"></script>
<!-- SCRIPT CHLNE SE PHELE HMRE DATABSE HONA CHAYOE -->
<script src="db.js"></script>
<script src="script.js"></script>
<script>
//.gallery is icon so if we click on that icon then we move to other
let gallery=document.querySelector(".gallery");
gallery.addEventListener("click",(e)=>{
location.assign("gallery.html");
});
</script>
</body>
</html>