-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathindex.html
67 lines (55 loc) · 2.31 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
59
60
61
62
63
64
65
66
67
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Inspector</title>
<link href='https://fonts.googleapis.com/css?family=Roboto:400,900,700,500,100,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" type="text/css" href="style/app.css">
<script type="text/javascript">
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-22680456-16', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<iframe src="" id="api-frame" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" width="640" height="480"></iframe>
<aside class="inspector">
<div class="inspector__load">
<button type="button" name="load-model" class="button btn-primary">Load model</button>
</div>
<h2>Stats</h2>
<div class="info">
</div>
<h2>Textures</h2>
<div class="textures">
</div>
<h2>
<label>
<input type="checkbox" name="postprocessing" checked disabled> Post processing</label>
</h2>
<div class="postprocessing">
<div class="postprocessing-settings">
</div>
</div>
<h2>Scene</h2>
<div class="objects">
Loading…
</div>
</aside>
<script src="https://labs.sketchfab.com/experiments/model-picker/SketchfabPicker.js"></script>
<script src="https://static.sketchfab.com/api/sketchfab-viewer-1.2.1.js"></script>
<script src="js/vendors/jquery-3.3.1.min.js"></script>
<script src="js/vendors/lodash.min.js"></script>
<script src="js/vendors/backbone-min.js"></script>
<script src="js/utils/getParameterByName.js"></script>
<script src="js/utils/humanizeSize.js"></script>
<script src="js/views/App.js"></script>
<script src="js/app.js"></script>
</body>
</html>