-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
29 lines (28 loc) · 937 Bytes
/
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
<!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>Filters</title>
<link rel="stylesheet" href="style.css">
<script src="./tracking/tracking-min.js"></script>
<script src="./tracking/data/face-min.js"></script>
</head>
<body>
<div class="container">
<div class="header">
<h1>🌷🌼🌸 Filter Me 🌸🌼🌷</h1>
</div>
<div class="buttons">
<button id="flower-crown">flower crown 💐</button>
<button id="bunny-ears">bunny ears 🐰</button>
</div>
<div class="webcam">
<video id="video" width="500" height="375" preload autoplay loop muted></video>
<canvas id="canvas" width="500" height="375"></canvas>
</div>
</div>
<script src="script.js"></script>
</body>
</html>