-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
56 lines (46 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<title>Jon Trombone</title>
<style>
body {
font-family: Monospace;
background-color: #0b0b0b;
color: #fff;
margin: 0px;
overflow: hidden;
}
.info {
color: #fff;
position: absolute;
top: 10px;
width: 100%;
text-align: center;
z-index: 100;
display:block;
pointer-events: none;
}
.info a{ color: #00f; font-weight: bold; text-decoration: underline; cursor: pointer; pointer-events: initial; }
</style>
<style>
div#jon-trombone-container {
width: 512px;
height: 512px;
margin-top: 3.0em;
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
<!-- three.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/84/three.min.js"></script>
<!-- Optional Modules -->
<script src="../dist/dependencies/OrbitControls.js"></script>
<script src="https://unpkg.com/guify"></script>
</head>
<body>
<div id="jon-trombone-container"></div>
<script src="../dist/jon-trombone.js"></script>
</body>
</html>