-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (31 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<title>Filter Snap</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="navbar">
<h1>Filter Snap</h1>
</div>
<div class="top-container">
<video id="video">Stream not available right now.</video>
<button id="take-photo" 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="main.js"></script>
</body>
</html>