-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (39 loc) · 971 Bytes
/
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
<html>
<head>
<title>My first Three.js app</title>
<style>
body {
margin: 0;
color: #ffffff;
position: relative;
font-family: Helvetica, Arial, sans-serif;
background-color: #000;
}
.overlay {
position: absolute;
margin: 0px;
padding: 20px;
background-color: rgba(0,0,0,0.5);
}
.overlay h1 {
margin: 0px 0px 15px 0px
}
.overlay a {
color: #497ed6;
}
canvas { width: 100%; height: 100% }
</style>
</head>
<body>
<div class="overlay">
<h1>
Henry Fong and J-Trick - Scream
</h1>
Visualizer Protoype | <a href="https://github.com/joemclean/splice-dna-visualizer">Github page</a>
</div>
<script src="js/three.min.js"></script>
<script src="js/orbitcontrols.js"></script>
<script src="js/songdata.js"></script>
<script src="js/init.js"></script>
</body>
</html>