-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (26 loc) · 1.55 KB
/
index.html
File metadata and controls
29 lines (26 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>three.js: World Effects</title>
<meta itemprop="name" content="three.js: World Effects">
<meta name="twitter:title" content="three.js: World Effects">
<meta property="og:title" content="three.js: World Effects">
<meta property="og:site_name" content="three.js: World Effects">
<meta name="description" content="Minimal project showing simple cube placed in the world">
<meta itemprop="description" content="Minimal project showing simple cube placed in the world">
<meta property="og:description" content="Minimal project showing simple cube placed in the world">
<meta name="twitter:description" content="Minimal project showing simple cube placed in the world">
<meta property="og:image" content="https://8thwall.org/threejs-world-effects-example/preview.jpg"/>
<script src="https://cdn.jsdelivr.net/npm/@8thwall/engine-binary@1/dist/xr.js" async crossorigin="anonymous" data-preload-chunks="slam"></script>
<script src="https://cdn.jsdelivr.net/npm/@8thwall/xrextras@1/dist/xrextras.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@8thwall/landing-page@1/dist/landing-page.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="src/index.css">
</head>
<body>
<!-- The main canvas used for drawing by the app. -->
<canvas id="camerafeed"></canvas>
<script type="module" src="src/app.js"></script>
</body>
</html>