forked from jeromeetienne/fireworks.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
244 lines (237 loc) · 8.44 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
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Fireworks.js</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet">
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap-responsive.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="http://twitter.github.com/bootstrap/assets/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png">
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="#">Fireworks.js</a>
<div class="nav-collapse">
<ul class="nav">
<li><a href="https://github.com/jeromeetienne/fireworks.js">Github</a></li>
<li><a href="#examples">Examples</a></li>
<li><a href="https://twitter.com/#!/jerome_etienne">Twitter</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<!-- Main hero unit for a primary marketing message or call to action -->
<div class="hero-unit">
<h1>Fireworks.js</h1>
<p>Fireworks is a particle engine based on a very slim core and rich set of flexible plugins.
You can easily make your own plugins to fit your own needs and go wild on creativity.</p>
<p><a class="btn btn-primary btn-large" href="https://github.com/jeromeetienne/fireworks.js">Learn more »</a></p>
</div>
<div class="page-header" id="examples">
<h1>Examples</h1>
</div>
<div class="row">
<div class='span3'>
<div class="thumbnail">
<div class="caption">
<h5>Canvas renderer</h5>
<p>
This is a very basic example with a rendering
in Canvas2D
</p>
<p>
<a href="examples/renderer_canvas/canvas_example.html" class="btn" target='_blank'>Learn more »</a>
</p>
</div>
</div>
</div>
<div class='span3'>
<div class="thumbnail">
<div class="caption">
<h5>Canvas renderer</h5>
<p>
This is a explosion animation with a spritesheet and a rendering
in Canvas2D
</p>
<p>
<a href="examples/renderer_canvas/canvas_explosion.html" class="btn" target='_blank'>Learn more »</a>
</p>
</div>
</div>
</div>
<div class='span3'>
<div class="thumbnail">
<div class="caption">
<h5>three.js renderer</h5>
<p>
This is a very basic example with a rendering
in three.js particle system
</p>
<p>
<a href="examples/renderer_threejs/tqueryparticlesystem.html" class="btn" target='_blank'>Learn more »</a>
</p>
</div>
</div>
</div>
<div class='span3'>
<div class="thumbnail">
<div class="caption">
<h5>three.js renderer</h5>
<p>
This is a very basic example with a rendering
in three.js object3D
</p>
<p>
<a href="examples/renderer_threejs/tqueryobject3d.html" class="btn" target='_blank'>Learn more »</a>
</p>
</div>
</div>
</div>
<div class='span3'>
<div class="thumbnail">
<div class="caption">
<h5>Flame thrower Canvas</h5>
<p>
This is an attempts to reproduce
tremulous flamethrower in Canvas2D
</p>
<p>
<a href="examples/flamethrower/canvas_flamethrower.html" class="btn" target='_blank'>Learn more »</a>
</p>
</div>
</div>
</div>
<div class='span3'>
<div class="thumbnail">
<div class="caption">
<h5>Flame thrower webgl</h5>
<p>
This is an attempts to reproduce
tremulous flamethrower in webgl
</p>
<p>
<a href="examples/flamethrower/webgl_flamethrower.html" class="btn" target='_blank'>Learn more »</a>
</p>
</div>
</div>
</div>
<div class='span3'>
<div class="thumbnail">
<div class="caption">
<h5>Single Flame webgl</h5>
<p>
It shows how to code a single flame emitter
</p>
<p>
<a href="examples/flame/flame.html" class="btn" target='_blank'>Learn more »</a>
</p>
</div>
</div>
</div>
<div class='span3'>
<div class="thumbnail">
<div class="caption">
<h5>Black Smoke webgl</h5>
<p>
It shows how to code a black smoke emitter
</p>
<p>
<a href="examples/smoke/webgl_blacksmoke.html" class="btn" target='_blank'>Learn more »</a>
</p>
</div>
</div>
</div>
<div class='span3'>
<div class="thumbnail">
<div class="caption">
<h5>Space Portal webgl</h5>
<p>
It shows how to code
Space Portal emitter
</p>
<p>
<a href="examples/spaceportal/spaceportal.html" class="btn" target='_blank'>Learn more »</a>
</p>
</div>
</div>
</div>
<div class='span3'>
<div class="thumbnail">
<div class="caption">
<h5>Cloud with Sprite</h5>
<p>
This is a copy of the <a href="http://mrdoob.com/lab/javascript/webgl/clouds/">cloud demo</a>
from
<a href="http://mrdoob.com/">mrdoob</a>.
It shows how to code the effect with fireworks.js
</p>
<p>
<a href="examples/cloud/cloud_uniform.html" class="btn" target='_blank'>Learn more »</a>
</p>
</div>
</div>
</div>
<div class='span3'>
<div class="thumbnail">
<div class="caption">
<h5>Cloud with Sprite</h5>
<p>
This is a copy of the <a href="http://mrdoob.com/lab/javascript/webgl/clouds/">cloud demo</a>
from
<a href="http://mrdoob.com/">mrdoob</a>.
It shows how to code the effect with fireworks.js
</p>
<p>
<a href="examples/cloud/cloud_cluster.html" class="btn" target='_blank'>Learn more »</a>
</p>
</div>
</div>
</div>
</div> <!-- /container -->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="http://twitter.github.com/bootstrap/assets/js/jquery.js"></script>
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-transition.js"></script>
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-alert.js"></script>
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-modal.js"></script>
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-dropdown.js"></script>
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-scrollspy.js"></script>
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-tab.js"></script>
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-tooltip.js"></script>
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-popover.js"></script>
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-button.js"></script>
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-collapse.js"></script>
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-carousel.js"></script>
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-typeahead.js"></script>
<!-- Github ribbon -->
<a href="https://github.com/jeromeetienne/fireworks.js/" target="_blank"><img style="position: fixed; top: 0; right: 0; border: 0; z-index: 9999;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub">
</a>
</body>
</html>