-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.html
26 lines (23 loc) · 808 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
<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">
<title>Camera App Demo</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main id="camera">
<canvas id="camera--sensor"></canvas>
<video id="camera--view" autoplay playsinline></video>
</main>
<div id="background"></div>
<div id="card">
<h1 id="result">Get Started</h1>
<p id="content">This demo app recognizes common office items (pens, computers, desks, chairs) and other everyday items (people, cars, trees).</p>
</div>
<button id="camera--trigger">Take a picture</button>
</div>
<script src="scripts.js"></script>
</body>
</html>