-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
27 lines (25 loc) · 900 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
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
<title>Hotdog or Not Hotdog</title>
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#21a8c6">
<link rel="icon" href="images/hotdog.png">
<link rel="stylesheet" href="app.css">
</head>
<body>
<!-- OVERLAY -->
<div id="overlay">
<div class="result"></div>
<div class="dialog">Concede acceso a la cámara para continuar</div>
</div>
<!-- CAMERA UI -->
<video id="camera" autoplay></video>
<!-- SCRIPTS -->
<script type="text/javascript" src="worker-installer.js"></script>
<script type="text/javascript" src="tensorflow.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>