forked from Autodesk/3DViewerComponent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (31 loc) · 1.06 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
<!doctype html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="generator" content="3D Viewer Web Component" />
<title>3D Viewer Web Component</title>
<meta name="theme-color" content="#2E3AA1">
<meta name="msapplication-TileColor" content="#3372DF">
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="PSK">
<script src="../bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="bower_components/3DViewerComponent/dist/three-d-viewer.html">
<style>
html, body {
height: 100%;
width: 100%;
}
.container {
width: 80vw;
height: 80vh;
}
</style>
</head>
<body unresolved class="fullbleed layout vertical">
<div class="container">
<three-d-viewer id="viewer" color="93AEBF" previews='[{"file_type": "json","file_url": "../samples/Camel.json"}]'></three-d-viewer>
</div>
</body>
</html>