-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (38 loc) · 1.39 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
<html>
<head>
<meta charset=utf-8>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My first Three.js app</title>
<style>
body { margin: 0; }
canvas { width: 100%; height: 100% }
</style>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.1.1/material.grey-blue.min.css" />
</head>
<body>
<!-- No header, and the drawer stays open on larger screens (fixed drawer). -->
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-drawer">
<div class="mdl-layout__drawer">
<span class="mdl-layout-title">Prototyp</span>
<nav class="mdl-navigation">
<!-- <a class="mdl-navigation__link" href="#">Link</a> -->
</nav>
</div>
<main class="mdl-layout__content">
<div class="page-content">
<div id="container"></div>
<!-- Your content goes here -->
</div>
</main>
</div>
<script defer src="https://code.getmdl.io/1.1.1/material.min.js"></script>
<script src="js/three.min.js"></script>
<script src="js/stats.min.js"></script>
<script src="js/controls/OrbitControls.js"></script>
<script src="js/Detector.js"></script>
<script src="js/Gyroscope.js"></script>
<script src="js/Load.js"></script>
<script src="js/Display.js"></script>
</body>
</html>