-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (102 loc) · 4.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>AxionFX Flash/HTML5 Particle Systemj</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/datgui.css" />
<link href='http://fonts.googleapis.com/css?family=Orbitron:700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.2/themes/vader/jquery-ui.css">
<link rel="stylesheet" href="javascripts/lib/bootstrap-tokenfield/css/tokenfield-typeahead.min.css" type='text/css'>
<link rel="stylesheet" href="javascripts/lib/bootstrap-tokenfield/css/bootstrap-tokenfield.min.css" type='text/css'>
<link rel="stylesheet" href="css/style.css" />
<link rel="icon" href="favicon.png" type="image/png">
<script src='javascripts/lib/swfobj/swfobject.js'></script>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<script src="javascripts/lib/bootstrap-tokenfield/bootstrap-tokenfield.min.js"></script>
</head>
<body>
<div id='main'>
<div id='side'>AxionFX</div>
<div id='side2'>AxionFX</div>
<div id="flashContent">
<div id="canvasContainer"></div>
<div id='flashemitter-bg'>
<object type="application/x-shockwave-flash" data="emitter.swf" width="200" height="200" id="flashemitter" style="">
<param name="movie" value="emitter.swf" />
<param name="quality" value="high" />
<param name="play" value="true" />
<param name="loop" value="true" />
<param name="wmode" value="transparent" />
<param name="scale" value="noscale" />
<param name="menu" value="true" />
<param name="devicefont" value="false" />
<param name="salign" value="" />
<param name="allowScriptAccess" value="always" />
<a href="http://www.adobe.com/go/getflash">
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
</a>
</object>
</div>
<div id='captureevents'></div>
<div id='zoom-level'>Zoom: <span>1.0</span></div>
<div id="slider-vertical" style="height:200px;"></div>
</div>
<div id='scroll'>
<div id='tabs'>
<ul>
<li><a href="#canvas-tab-container">System</a></li>
<li><a href="#emitters-tab-container">Emitters</a></li>
<li><a href="#bodies-tab-container">Bodies</a></li>
<li><a href="#paths-tab-container">Paths</a></li>
</ul>
<div id='canvas-tab-container'>
<div id='guiContainer-canvas'></div>
</div>
<div id='emitters-tab-container'>
<div id='emitters-tab' class='accordion'>
</div>
<button id='addEmitter'>Create New Emitter</button>
</div>
<div id='bodies-tab-container'>
<div id='bodies-tab' class='accordion'>
</div>
<button id='addBody'>Create New Body</button>
</div>
<div id='paths-tab-container' >
<div id='paths-tab' class='accordion'>
</div>
<button id='addPath'>Create New Path</button>
</div>
</div>
<div id='guiContainer-controls'></div>
<div id='desc'>
<h3>AxionFX</h3>
<span id='pronounce' >ˈakʃ(ə)n ɪˈfɛkts/</span><br/>
an open source, light weight, cross platform, 2D particle engine + authoring tool for HTML5/Flash/Flex/Air. It is offered non-commercially and is community supported under the <a href='http://www.apache.org/licenses/LICENSE-2.0.html'>Apache 2.0</a> license for free use / distribution. Features include: real-time physics configuration, appearance configuration, emit along configurable curved splines, add gravitational bodies for particle attraction/repulsion, attract/repulse along configurable cuved splines, drag and drop any image or swf into the visual editor for easy aid/placeholder and easily export to HTML5 or Flash. It's namesake is the hypothetical <a href='http://en.wikipedia.org/wiki/Axion'>Axion particle</a>, theoretical subatomic composition of dark matter.<br/>
<a href='https://github.com/coolblade/axionfx'><div id='github'></div></a>
</div>
</div>
<div id='right-info'></div>
<div id='license'>
All source and materials © Copyright 2014, Gregory Ray, except where otherwise stated. Provided under the <a href='http://www.apache.org/licenses/LICENSE-2.0'>Apache 2.0 License</a>.
</div>
<div id="dialog-add-emitter" title="Add Emitter">
<label>Starting Template:</label>
<select id='template'></select>
</div>
<div id="dialog-load-config" title="Load Config">
<label>Config JSON:</label><br/>
<textAREA id='config-json' rows="24" cols="58">{}</textAREA>
</div>
<script data-main="javascripts/main.js" type="text/javascript" src="javascripts/lib/third/require.js"></script>
<script type="text/javascript" src="javascripts/index.js"></script>
<script type='text/javascript'>
window.onresize = function(event) {
adjustSize();
};
adjustSize();
</script>
</div>
</body>
</html>