-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Grazie</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<script type="module" src="src/swiped-events.js"></script>
</head>
<body>
<div class="barSwipe">
<button type="button" id="avanti" class="tastoSwipe" ><</button>
swipe
<button type="button" id="indietro" class="tastoSwipe" >></button>
</div>
<div id="camera" class="camera">
<video id="video">Video stream not available.</video>
<div class="barAzioni">
<button type="button" id="startbutton"></button>
<button type="button" id="annullaFoto">x</button>
</div>
<canvas id="canvas"> </canvas>
</div>
<div class="titolo" id="titolo"></div>
<div class="testo" id="testo"></div>
<div class="img" id="img" onerror="this.onerror=null">
<img id="photo" />
</div>
<script type="module" src="src/script.js"></script>
</body>
</html>