-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (21 loc) · 951 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Audio visualization</title>
<link rel="stylesheet" href="css/style.css">
<script src="node_modules/pizzicato/distr/Pizzicato.min.js"></script>
<script src="node_modules/pizzicato/src/Util.js"></script>
<script src="node_modules/pizzicato/src/Events.js"></script>
<script src="node_modules/pizzicato/src/Sound.js"></script>
<script src="node_modules/three/build/three.min.js"></script>
<script src="node_modules/three/examples/js/renderers/Projector.js"></script>
<script src="node_modules/three/examples/js/renderers/CanvasRenderer.js"></script>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/gsap/src/minified/TweenLite.min.js"></script>
<script src="node_modules/gsap/src/minified/easing/EasePack.min.js"></script>
</head>
<body>
<script src="js/app.js"></script>
</body>
</html>