-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (34 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>VideoSnap</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="navbar">
<h1>VideoSnap</h1>
</div>
<div class="top-container">
<video id="video">Stream not available...</video>
<button id="photo-button" class="btn btn-dark">Take Photo</button>
<select id="photo-filter" class="select">
<option value="none">Normal</option>
<option value="grayscale(100%)">Grayscale</option>
<option value="sepia(100%)">Sepia</option>
<option value="invert(100%)">Invert</option>
<option value="hue-rotate(90deg)">Hue</option>
<option value="blur(10px)">Blur</option>
<option value="contrast(200%)">Contrast</option>
</select>
<button id="clear-button" class="btn btn-light">Clear</button>
<canvas id="canvas"></canvas>
</div>
<div class="bottom-container">
<div id="photos"></div>
</div>
<script src="js/main.js"></script>
</body>
</html>