-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
36 lines (32 loc) · 897 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
30
31
32
33
34
35
36
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Snapshot :: camera and gallery viewer</title>
<meta name="viewport" content="width=480">
<link href="dist/brick.css" type="text/css" rel="stylesheet" media="all and (max-width: 480px)">
<link href="style.css" type="text/css" rel="stylesheet">
<script src="dist/brick.js"></script>
</head>
<body>
<nav>
<button class="takeBtn">Take</button>
<button class="showBtn">Show</button>
<button class="galleryBtn">Gallery</button>
</nav>
<x-deck selected-index="0">
<x-card>
<video></video>
<button class="snap">Take Picture</button>
</x-card>
<x-card>
<canvas class="canvas"></canvas>
<img src="" class="photo">
<button class="save">Save Picture</button>
</x-card>
<x-card>
</x-card>
</x-deck>
<script src="main.js"></script>
</body>
</html>