-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (43 loc) · 1.37 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>alone</title>
<style>
@import 'https://fonts.googleapis.com/css?family=Lato:300';
body {
margin: 0px;
padding: 0px;
box-sizing: border-box;
overflow: hidden;
font-family: 'Lato';
}
.title {
position: absolute;
z-index: 1;
width: 100%;
top: 100px;
font-size: 20px;
color: #fcfcfc;
text-align: center;
opacity: 0;
animation: title-show 2.5s forwards;
}
@keyframes title-show {
from {opacity: 0;}
to {opacity: 1;}
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.10.2/p5.min.js" integrity="sha256-8IAwtdm0tRSYpMA1G5K1jpeHZq1N02yrdpoBteVVuMc=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.10.2/addons/p5.sound.min.js" integrity="sha256-GdlroanCXFgv0ILaTQ1v0qnNxc+FQNjjXADWxmtr7PM=" crossorigin="anonymous"></script>
</head>
<body>
<div class="title">Loading...</div>
<audio src="./assets/Where is my mind.mp3"></audio>
<script src="./src/colorboard.js"></script>
<script src="./src/Sphere.js"></script>
<script src="./src/ExpandingOrbit.js"></script>
<script src="./src/audio.js"></script>
<script src="./src/index.js"></script>
</body>
</html>