forked from ycjungSubhuman/TrainMusicVideo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fish.html
34 lines (34 loc) · 1.35 KB
/
fish.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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<title>A Train Trip</title>
<style>
body { margin: 0; }
canvas { width: 100%; height: 100% }
html { overflow: hidden; }
</style>
</head>
<body>
<script src="js/util/emitter.js"></script>
<script src="js/shader/shaders.js"></script>
<script src="js/three/three.min.js"></script>
<script src="js/three/OBJLoader.js"></script>
<script src="js/three/MTLLoader.js"></script>
<script src="js/three/postprocessing/EffectComposer.js"></script>
<script src="js/three/postprocessing/ClearPass.js"></script>
<script src="js/three/postprocessing/FishEyePass.js"></script>
<script src="js/three/postprocessing/MaskPass.js"></script>
<script src="js/three/postprocessing/RenderPass.js"></script>
<script src="js/three/postprocessing/SavePass.js"></script>
<script src="js/three/postprocessing/ShaderPass.js"></script>
<script src="js/shader/CopyShader.js"></script>
<script src="js/shader/BokehShader.js"></script>
<script src="js/shader/FishEyeShader.js"></script>
<script src="js/three/particles.js"></script>
<script src="js/gsap/TweenLite.min.js"></script>
<script src="js/gsap/easing/EasePack.min.js"></script>
<script src="js/debug/fish.js"></script>
</body>
</html>