-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.55 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>WebGL Particle Effect</title>
<link rel='stylesheet' href='css/reset.css'>
<link rel='stylesheet' href='css/jquery-ui/jquery-ui-1.10.3.css'>
<link rel='stylesheet' href='css/custom-scrollbar.css'>
<link rel='stylesheet' href='css/typography.css'>
<link rel='stylesheet' href='css/gui.css'>
</head>
<body>
<script src="js/jquery-1.9.1.js"></script>
<script src="js/jquery-ui/jquery-ui-1.10.3.js"></script>
<script src="js/webgl-debug-utils.js"></script>
<script src='js/FileSaver.min.js'></script>
<script src="../WebGLParticleEffect/js/three.js"></script>
<script src="../WebGLParticleEffect/js/gl-matrix.js"></script>
<script src="../WebGLParticleEffect/js/webgl-utils.js"></script>
<script src="../WebGLParticleEffect/js/trackball-controls.js"></script>
<script src='../WebGLParticleEffect/js/particle-effect.js'></script>
<script src='../WebGLParticleEffect/js/particle-emitter.js'></script>
<script src='../WebGLParticleEffect/js/engine.js'></script>
<script src='js/jquery.mousewheel.min.js'></script>
<script src='js/custom-scrollbar.js'></script>
<script src='js/options-menu.js'></script>
<script src='js/setting.js'></script>
<script src='js/setting-graph.js'></script>
<script src="js/toolbar.js"></script>
<script src='js/gui.js'></script>
</body>
</html>