-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (33 loc) · 1.18 KB
/
Copy pathindex.html
File metadata and controls
36 lines (33 loc) · 1.18 KB
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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebVR examples</title>
<link rel="stylesheet" href="css/index.css">
<script src="js/qrcode.min.js" defer></script>
<script src="js/index.js" defer></script>
</head>
<body>
<ul class="cards">
<li>
<div id="qrcode"></div>
<span id="qrcode-title">Current page URL</span>
</li>
<li>
<a href="examples/1-ar-js-marker-tracking.html" target="_blank">AR JS Marker Tracking</a>
<div>
Marker: <a href="assets/docs/barcode-a4.pdf" target="_blank">PDF</a>
<a href="assets/images/barcode-a4.png" target="_blank">PNG</a>
</div>
</li>
<li>
<a href="examples/2-mindar-image-tracking.html" target="_blank">MindAR Image Tracking</a>
<div>
Marker: <a href="assets/docs/qr-code-a4.pdf" target="_blank">PDF</a>
<a href="assets/images/qr-code-a4.png" target="_blank">PNG</a>
</div>
</li>
</ul>
</body>
</html>