-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
58 lines (50 loc) · 1.51 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html dir="ltr" lang="en">
<head>
<meta charset="utf-8">
<title>WebXR demos</title>
<meta name="Description" content="WebXR demos">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0">
<meta name="theme-color" content="#16161d">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta http-equiv="x-ua-compatible" content="IE=Edge" />
</head>
<body>
<div id="centered">
<h1>WebXR demos</h1>
<a href="wxrv://vogloblinsky.github.io/webxr-demos/">Open this page in WebXR Viewer / iOS</a>
<ul>
<li>
<a href="./arjs/index.html">1. AR.js / Chrome-Safari / iOS/Android</a>
</li>
<li>
<a href="./aframe-ar/index.html">2. Aframe AR / WebXR Viewer / iOS</a>
</li>
<li>
<a href="./webxr/index.html">3. WebXR / Chrome Canary / Android</a>
</li>
</ul>
</div>
<style>
html,
body {
margin: 0;
padding: 0;
height: 100%;
}
body {
font: 25px 'Helvetica Neue', Helvetica, Arial, sans-serif;
line-height: 1.4em;
background: #f5f5f5;
color: #4d4d4d;
}
#centered {
display: flex;
height: 100%;
justify-content: center;
align-items: center;
flex-direction: column;
}
</style>
</body>
</html>