-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtry.html
174 lines (137 loc) · 8.96 KB
/
try.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Html5-canvas-animation by JoanClaret</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="stylesheets/normalize.css" media="screen">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/github-light.css" media="screen">
</head>
<style>
body {
background-color: #fff;
margin: 0px;
}
h1{
margin:0;
}
a {
color:#0078ff;
}
#canvas{
width:100%;
overflow: hidden;
position:absolute;
top:0;
left:0;
bottom:0;
right:0;
background-color: #1a1724;
}
.page-header{
background:none;
color:#fff;
padding:100px 30px;
}
.canvas-wrap{
position:relative;
}
div.canvas-content{
position:relative;
z-index:2000;
color:#fff;
text-align:center;
}
.btn{
background-color: rgba(255, 255, 255, 1);
color:#606c71;
}
</style>
<body>
<a href="https://github.com/joanclaret"><img style="z-index:3000;position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
<section class="canvas-wrap">
<div class="canvas-content page-header">
<h1 class="project-name">3D lines animation with three.js</h1>
<h2 class="project-tagline">..and an animated background color</h2>
<a href="https://github.com/JoanClaret/html5-canvas-animation" class="btn">View on GitHub</a>
<a href="https://github.com/JoanClaret/html5-canvas-animation/zipball/master" class="btn">Download .zip</a>
<a href="https://github.com/JoanClaret/html5-canvas-animation/tarball/master" class="btn">Download .tar.gz</a>
</div>
<div id="canvas" class="gradient"></div>
</section>
<section class="main-content">
<h1>
<a id="3d-lines-animation-with-threejs-" class="anchor" href="#3d-lines-animation-with-threejs-" aria-hidden="true"><span class="octicon octicon-link"></span></a>3D lines animation with three.js </h1>
<p>...and an animated background color</p>
<h2>
<a id="tags" class="anchor" href="#tags" aria-hidden="true"><span class="octicon octicon-link"></span></a>Tags</h2>
<p>HTML5, javascript, canvas, three.js, animation, colors.</p>
<h2>
<a id="what-is" class="anchor" href="#what-is" aria-hidden="true"><span class="octicon octicon-link"></span></a>What is?</h2>
<p>I took a prebuild three.js <a href="http://threejs.org/examples/#canvas_lines">example</a> and put a fancy animated background color, adjust some parameters like number of lines, perspective and colors. Now is ready to use for everyone.</p>
<h2>
<a id="how-it-works" class="anchor" href="#how-it-works" aria-hidden="true"><span class="octicon octicon-link"></span></a>How it works?</h2>
<h3>
<a id="javascript-initialization" class="anchor" href="#javascript-initialization" aria-hidden="true"><span class="octicon octicon-link"></span></a>Javascript initialization</h3>
<div class="highlight highlight-html"><pre><span class="pl-c"><!-- Main library --></span>
<<span class="pl-ent">script</span> <span class="pl-e">src</span>=<span class="pl-s"><span class="pl-pds">"</span>js/three.min.js<span class="pl-pds">"</span></span>></<span class="pl-ent">script</span>>
<span class="pl-c"><!-- Helpers --></span>
<<span class="pl-ent">script</span> <span class="pl-e">src</span>=<span class="pl-s"><span class="pl-pds">"</span>js/projector.js<span class="pl-pds">"</span></span>></<span class="pl-ent">script</span>>
<<span class="pl-ent">script</span> <span class="pl-e">src</span>=<span class="pl-s"><span class="pl-pds">"</span>js/canvas-renderer.js<span class="pl-pds">"</span></span>></<span class="pl-ent">script</span>>
<span class="pl-c"><!-- Visualitzation adjustments --></span>
<<span class="pl-ent">script</span> <span class="pl-e">src</span>=<span class="pl-s"><span class="pl-pds">"</span>js/3d-lines-animation.js<span class="pl-pds">"</span></span>></<span class="pl-ent">script</span>>
<span class="pl-c"><!-- Animated background color --></span>
<<span class="pl-ent">script</span> <span class="pl-e">src</span>=<span class="pl-s"><span class="pl-pds">"</span>http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.2/jquery.min.js<span class="pl-pds">"</span></span>></<span class="pl-ent">script</span>>
<<span class="pl-ent">script</span> <span class="pl-e">src</span>=<span class="pl-s"><span class="pl-pds">"</span>js/color.js<span class="pl-pds">"</span></span>></<span class="pl-ent">script</span>></pre></div>
<h3>
<a id="layout" class="anchor" href="#layout" aria-hidden="true"><span class="octicon octicon-link"></span></a>Layout</h3>
<div class="highlight highlight-html"><pre><<span class="pl-ent">div</span> <span class="pl-e">class</span>=<span class="pl-s"><span class="pl-pds">"</span>canvas-wrap<span class="pl-pds">"</span></span>>
<<span class="pl-ent">div</span> <span class="pl-e">class</span>=<span class="pl-s"><span class="pl-pds">"</span>canvas-content<span class="pl-pds">"</span></span>>
<<span class="pl-ent">h1</span>>Hello world</<span class="pl-ent">h1</span>>
</<span class="pl-ent">div</span>>
<<span class="pl-ent">div</span> <span class="pl-e">id</span>=<span class="pl-s"><span class="pl-pds">"</span>canvas<span class="pl-pds">"</span></span> <span class="pl-e">class</span>=<span class="pl-s"><span class="pl-pds">"</span>gradient<span class="pl-pds">"</span></span>></<span class="pl-ent">div</span>>
</<span class="pl-ent">div</span>></pre></div>
<h3>
<a id="options" class="anchor" href="#options" aria-hidden="true"><span class="octicon octicon-link"></span></a>Options</h3>
<ul>
<li>The script is fully configurable (colors, lines, opacities, perspectives...) but you'll need to dive in to the code to adjust them. Download the files and start checking out the file 3d-lines-animation.js</li>
</ul>
<h2>
<a id="license" class="anchor" href="#license" aria-hidden="true"><span class="octicon octicon-link"></span></a>License</h2>
<pre><code>The MIT License (MIT)
Copyright (c) 2015 Joan Claret
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
</code></pre>
<footer class="site-footer">
<span class="site-footer-owner"><a href="https://github.com/JoanClaret/html5-canvas-animation">Html5-canvas-animation</a> is maintained by <a href="https://github.com/JoanClaret">JoanClaret</a>.</span>
<span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub Pages</a> using the <a href="https://github.com/jasonlong/cayman-theme">Cayman theme</a> by <a href="https://twitter.com/jasonlong">Jason Long</a>.</span>
</footer>
</section>
</body>
<!-- Main library -->
<script src="js/three.min.js"></script>
<!-- Helpers -->
<script src="js/projector.js"></script>
<script src="js/canvas-renderer.js"></script>
<!-- Adjustments -->
<script src="js/3d-lines-animation.js"></script>
<!-- Animated background color -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<script src="js/color.js"></script>
</html>