|
0
|
1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
|
|
2 |
<html xmlns:yui="http://yuilibrary.com/rdf/1.0/yui.rdf#"> |
|
|
3 |
<head> |
|
|
4 |
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> |
|
|
5 |
<title>API: anim anim-curve.js (YUI Library)</title> |
|
|
6 |
|
|
|
7 |
<link rel="stylesheet" type="text/css" href="assets/reset-fonts-grids-min.css" /> |
|
|
8 |
<link rel="stylesheet" type="text/css" href="assets/api.css" /> |
|
|
9 |
|
|
|
10 |
<script type="text/javascript" src="assets/api-js"></script> |
|
|
11 |
<script type="text/javascript" src="assets/ac-js"></script> |
|
|
12 |
</head> |
|
|
13 |
|
|
|
14 |
<body id="yahoo-com"> |
|
|
15 |
|
|
|
16 |
<div id="doc3" class="yui-t2"> |
|
|
17 |
<div id="hd"> |
|
|
18 |
<h1><a href="http://developer.yahoo.com/yui/" title="Yahoo! UI Library">Yahoo! UI Library</a></h1> |
|
|
19 |
<h3>anim <span class="subtitle">3.0.0b1</span></h3> |
|
|
20 |
<a href="./index.html" title="Yahoo! UI Library">Yahoo! UI Library</a> |
|
|
21 |
> <a href="./module_anim.html" title="anim">anim</a> |
|
|
22 |
|
|
|
23 |
> anim-curve.js (source view) |
|
|
24 |
<form onsubmit="return false"> |
|
|
25 |
<div id="propertysearch"> |
|
|
26 |
Search: <input autocomplete="off" id="searchinput" /> |
|
|
27 |
<div id="searchresults"> |
|
|
28 |
|
|
|
29 |
</div> |
|
|
30 |
</div> |
|
|
31 |
</form> |
|
|
32 |
</div> |
|
|
33 |
|
|
|
34 |
<div id="bd"> |
|
|
35 |
<div id="yui-main"> |
|
|
36 |
<div class="yui-b"> |
|
|
37 |
<form action="#" name="yui-classopts-form" method="get" id="yui-classopts-form"> |
|
|
38 |
<fieldset> |
|
|
39 |
<legend>Filters</legend> |
|
|
40 |
<span class="classopts"><input type="checkbox" name="show_private" id="show_private" /> <label for="show_private">Show Private</label></span> |
|
|
41 |
<span class="classopts"><input type="checkbox" name="show_protected" id="show_protected" /> <label for="show_protected">Show Protected</label></span> |
|
|
42 |
<span class="classopts"><input type="checkbox" name="show_deprecated" id="show_deprecated" /> <label for="show_deprecated">Show Deprecated</label></span> |
|
|
43 |
</fieldset> |
|
|
44 |
</form> |
|
|
45 |
|
|
|
46 |
<div id="srcout"> |
|
|
47 |
<style> |
|
|
48 |
#doc3 .classopts { display:none; } |
|
|
49 |
</style> |
|
|
50 |
<div class="highlight" ><pre><span class="c">/**</span> |
|
|
51 |
<span class="c"> * Adds support for the <code>curve</code> property for the <code>to</code> </span> |
|
|
52 |
<span class="c"> * attribute. A curve is zero or more control points and an end point.</span> |
|
|
53 |
<span class="c"> * @module anim</span> |
|
|
54 |
<span class="c"> * @submodule anim-curve</span> |
|
|
55 |
<span class="c"> */</span> |
|
|
56 |
|
|
|
57 |
<span class="nx">Y</span><span class="o">.</span><span class="nx">Anim</span><span class="o">.</span><span class="nx">behaviors</span><span class="o">.</span><span class="nx">curve</span> <span class="o">=</span> <span class="o">{</span> |
|
|
58 |
<span class="nx">set</span><span class="o">:</span> <span class="k">function</span><span class="o">(</span><span class="nx">anim</span><span class="o">,</span> <span class="nx">att</span><span class="o">,</span> <span class="nx">from</span><span class="o">,</span> <span class="nx">to</span><span class="o">,</span> <span class="nx">elapsed</span><span class="o">,</span> <span class="nx">duration</span><span class="o">,</span> <span class="nx">fn</span><span class="o">)</span> <span class="o">{</span> |
|
|
59 |
<span class="nx">from</span> <span class="o">=</span> <span class="nx">from</span><span class="o">.</span><span class="nx">slice</span><span class="o">.</span><span class="nx">call</span><span class="o">(</span><span class="nx">from</span><span class="o">);</span> |
|
|
60 |
<span class="nx">to</span> <span class="o">=</span> <span class="nx">to</span><span class="o">.</span><span class="nx">slice</span><span class="o">.</span><span class="nx">call</span><span class="o">(</span><span class="nx">to</span><span class="o">);</span> |
|
|
61 |
<span class="k">var</span> <span class="nx">t</span> <span class="o">=</span> <span class="nx">fn</span><span class="o">(</span><span class="nx">elapsed</span><span class="o">,</span> <span class="m">0</span><span class="o">,</span> <span class="m">100</span><span class="o">,</span> <span class="nx">duration</span><span class="o">)</span> <span class="o">/</span> <span class="m">100</span><span class="o">;</span> |
|
|
62 |
<span class="nx">to</span><span class="o">.</span><span class="nx">unshift</span><span class="o">(</span><span class="nx">from</span><span class="o">);</span> |
|
|
63 |
<span class="nx">anim</span><span class="o">.</span><span class="nx">_node</span><span class="o">.</span><span class="nx">setXY</span><span class="o">(</span><span class="nx">Y</span><span class="o">.</span><span class="nx">Anim</span><span class="o">.</span><span class="nx">getBezier</span><span class="o">(</span><span class="nx">to</span><span class="o">,</span> <span class="nx">t</span><span class="o">));</span> |
|
|
64 |
<span class="o">},</span> |
|
|
65 |
|
|
|
66 |
<span class="nx">get</span><span class="o">:</span> <span class="k">function</span><span class="o">(</span><span class="nx">anim</span><span class="o">,</span> <span class="nx">att</span><span class="o">)</span> <span class="o">{</span> |
|
|
67 |
<span class="k">return</span> <span class="nx">anim</span><span class="o">.</span><span class="nx">_node</span><span class="o">.</span><span class="nx">getXY</span><span class="o">();</span> |
|
|
68 |
<span class="o">}</span> |
|
|
69 |
<span class="o">};</span> |
|
|
70 |
|
|
|
71 |
<span class="c">/**</span> |
|
|
72 |
<span class="c"> * Get the current position of the animated element based on t.</span> |
|
|
73 |
<span class="c"> * Each point is an array of "x" and "y" values (0 = x, 1 = y)</span> |
|
|
74 |
<span class="c"> * At least 2 points are required (start and end).</span> |
|
|
75 |
<span class="c"> * First point is start. Last point is end.</span> |
|
|
76 |
<span class="c"> * Additional control points are optional. </span> |
|
|
77 |
<span class="c"> * @for Anim</span> |
|
|
78 |
<span class="c"> * @method getBezier</span> |
|
|
79 |
<span class="c"> * @static</span> |
|
|
80 |
<span class="c"> * @param {Array} points An array containing Bezier points</span> |
|
|
81 |
<span class="c"> * @param {Number} t A number between 0 and 1 which is the basis for determining current position</span> |
|
|
82 |
<span class="c"> * @return {Array} An array containing int x and y member data</span> |
|
|
83 |
<span class="c"> */</span> |
|
|
84 |
<span class="nx">Y</span><span class="o">.</span><span class="nx">Anim</span><span class="o">.</span><span class="nx">getBezier</span> <span class="o">=</span> <span class="k">function</span><span class="o">(</span><span class="nx">points</span><span class="o">,</span> <span class="nx">t</span><span class="o">)</span> <span class="o">{</span> |
|
|
85 |
<span class="k">var</span> <span class="nx">n</span> <span class="o">=</span> <span class="nx">points</span><span class="o">.</span><span class="nx">length</span><span class="o">;</span> |
|
|
86 |
<span class="k">var</span> <span class="nx">tmp</span> <span class="o">=</span> <span class="o">[];</span> |
|
|
87 |
|
|
|
88 |
<span class="k">for</span> <span class="o">(</span><span class="k">var</span> <span class="nx">i</span> <span class="o">=</span> <span class="m">0</span><span class="o">;</span> <span class="nx">i</span> <span class="o"><</span> <span class="nx">n</span><span class="o">;</span> <span class="o">++</span><span class="nx">i</span><span class="o">){</span> |
|
|
89 |
<span class="nx">tmp</span><span class="o">[</span><span class="nx">i</span><span class="o">]</span> <span class="o">=</span> <span class="o">[</span><span class="nx">points</span><span class="o">[</span><span class="nx">i</span><span class="o">][</span><span class="m">0</span><span class="o">],</span> <span class="nx">points</span><span class="o">[</span><span class="nx">i</span><span class="o">][</span><span class="m">1</span><span class="o">]];</span> <span class="c">// save input</span> |
|
|
90 |
<span class="c"></span> <span class="o">}</span> |
|
|
91 |
|
|
|
92 |
<span class="k">for</span> <span class="o">(</span><span class="k">var</span> <span class="nx">j</span> <span class="o">=</span> <span class="m">1</span><span class="o">;</span> <span class="nx">j</span> <span class="o"><</span> <span class="nx">n</span><span class="o">;</span> <span class="o">++</span><span class="nx">j</span><span class="o">)</span> <span class="o">{</span> |
|
|
93 |
<span class="k">for</span> <span class="o">(</span><span class="nx">i</span> <span class="o">=</span> <span class="m">0</span><span class="o">;</span> <span class="nx">i</span> <span class="o"><</span> <span class="nx">n</span> <span class="o">-</span> <span class="nx">j</span><span class="o">;</span> <span class="o">++</span><span class="nx">i</span><span class="o">)</span> <span class="o">{</span> |
|
|
94 |
<span class="nx">tmp</span><span class="o">[</span><span class="nx">i</span><span class="o">][</span><span class="m">0</span><span class="o">]</span> <span class="o">=</span> <span class="o">(</span><span class="m">1</span> <span class="o">-</span> <span class="nx">t</span><span class="o">)</span> <span class="o">*</span> <span class="nx">tmp</span><span class="o">[</span><span class="nx">i</span><span class="o">][</span><span class="m">0</span><span class="o">]</span> <span class="o">+</span> <span class="nx">t</span> <span class="o">*</span> <span class="nx">tmp</span><span class="o">[</span><span class="nb">parseInt</span><span class="o">(</span><span class="nx">i</span> <span class="o">+</span> <span class="m">1</span><span class="o">,</span> <span class="m">10</span><span class="o">)][</span><span class="m">0</span><span class="o">];</span> |
|
|
95 |
<span class="nx">tmp</span><span class="o">[</span><span class="nx">i</span><span class="o">][</span><span class="m">1</span><span class="o">]</span> <span class="o">=</span> <span class="o">(</span><span class="m">1</span> <span class="o">-</span> <span class="nx">t</span><span class="o">)</span> <span class="o">*</span> <span class="nx">tmp</span><span class="o">[</span><span class="nx">i</span><span class="o">][</span><span class="m">1</span><span class="o">]</span> <span class="o">+</span> <span class="nx">t</span> <span class="o">*</span> <span class="nx">tmp</span><span class="o">[</span><span class="nb">parseInt</span><span class="o">(</span><span class="nx">i</span> <span class="o">+</span> <span class="m">1</span><span class="o">,</span> <span class="m">10</span><span class="o">)][</span><span class="m">1</span><span class="o">];</span> |
|
|
96 |
<span class="o">}</span> |
|
|
97 |
<span class="o">}</span> |
|
|
98 |
|
|
|
99 |
<span class="k">return</span> <span class="o">[</span> <span class="nx">tmp</span><span class="o">[</span><span class="m">0</span><span class="o">][</span><span class="m">0</span><span class="o">],</span> <span class="nx">tmp</span><span class="o">[</span><span class="m">0</span><span class="o">][</span><span class="m">1</span><span class="o">]</span> <span class="o">];</span> |
|
|
100 |
|
|
|
101 |
<span class="o">};</span> |
|
|
102 |
</pre></div> |
|
|
103 |
</div> |
|
|
104 |
</div> |
|
|
105 |
</div> |
|
|
106 |
<div class="yui-b"> |
|
|
107 |
<div class="nav"> |
|
|
108 |
|
|
|
109 |
<div id="moduleList" class="module"> |
|
|
110 |
<h4>Modules</h4> |
|
|
111 |
<ul class="content"> |
|
|
112 |
<li class="selected"><a href="module_anim.html" title="anim">anim</a></li> |
|
|
113 |
<li class=""><a href="module_attribute.html" title="attribute">attribute</a></li> |
|
|
114 |
<li class=""><a href="module_base.html" title="base">base</a></li> |
|
|
115 |
<li class=""><a href="module_cache.html" title="cache">cache</a></li> |
|
|
116 |
<li class=""><a href="module_classnamemanager.html" title="classnamemanager">classnamemanager</a></li> |
|
|
117 |
<li class=""><a href="module_collection.html" title="collection">collection</a></li> |
|
|
118 |
<li class=""><a href="module_console.html" title="console">console</a></li> |
|
|
119 |
<li class=""><a href="module_console-filters.html" title="console-filters">console-filters</a></li> |
|
|
120 |
<li class=""><a href="module_cookie.html" title="cookie">cookie</a></li> |
|
|
121 |
<li class=""><a href="module_dataschema.html" title="dataschema">dataschema</a></li> |
|
|
122 |
<li class=""><a href="module_datasource.html" title="datasource">datasource</a></li> |
|
|
123 |
<li class=""><a href="module_datatype.html" title="datatype">datatype</a></li> |
|
|
124 |
<li class=""><a href="module_dd.html" title="dd">dd</a></li> |
|
|
125 |
<li class=""><a href="module_dom.html" title="dom">dom</a></li> |
|
|
126 |
<li class=""><a href="module_dump.html" title="dump">dump</a></li> |
|
|
127 |
<li class=""><a href="module_event.html" title="event">event</a></li> |
|
|
128 |
<li class=""><a href="module_event-custom.html" title="event-custom">event-custom</a></li> |
|
|
129 |
<li class=""><a href="module_event-simulate.html" title="event-simulate">event-simulate</a></li> |
|
|
130 |
<li class=""><a href="module_history.html" title="history">history</a></li> |
|
|
131 |
<li class=""><a href="module_imageloader.html" title="imageloader">imageloader</a></li> |
|
|
132 |
<li class=""><a href="module_io.html" title="io">io</a></li> |
|
|
133 |
<li class=""><a href="module_json.html" title="json">json</a></li> |
|
|
134 |
<li class=""><a href="module_node.html" title="node">node</a></li> |
|
|
135 |
<li class=""><a href="module_node-focusmanager.html" title="node-focusmanager">node-focusmanager</a></li> |
|
|
136 |
<li class=""><a href="module_node-menunav.html" title="node-menunav">node-menunav</a></li> |
|
|
137 |
<li class=""><a href="module_oop.html" title="oop">oop</a></li> |
|
|
138 |
<li class=""><a href="module_overlay.html" title="overlay">overlay</a></li> |
|
|
139 |
<li class=""><a href="module_plugin.html" title="plugin">plugin</a></li> |
|
|
140 |
<li class=""><a href="module_profiler.html" title="profiler">profiler</a></li> |
|
|
141 |
<li class=""><a href="module_queue.html" title="queue">queue</a></li> |
|
|
142 |
<li class=""><a href="module_slider.html" title="slider">slider</a></li> |
|
|
143 |
<li class=""><a href="module_stylesheet.html" title="stylesheet">stylesheet</a></li> |
|
|
144 |
<li class=""><a href="module_substitute.html" title="substitute">substitute</a></li> |
|
|
145 |
<li class=""><a href="module_test.html" title="test">test</a></li> |
|
|
146 |
<li class=""><a href="module_widget.html" title="widget">widget</a></li> |
|
|
147 |
<li class=""><a href="module_widget-position.html" title="widget-position">widget-position</a></li> |
|
|
148 |
<li class=""><a href="module_widget-position-ext.html" title="widget-position-ext">widget-position-ext</a></li> |
|
|
149 |
<li class=""><a href="module_widget-stack.html" title="widget-stack">widget-stack</a></li> |
|
|
150 |
<li class=""><a href="module_widget-stdmod.html" title="widget-stdmod">widget-stdmod</a></li> |
|
|
151 |
<li class=""><a href="module_yui.html" title="yui">yui</a></li> |
|
|
152 |
</ul> |
|
|
153 |
</div> |
|
|
154 |
|
|
|
155 |
<div id="classList" class="module"> |
|
|
156 |
<h4>Classes</h4> |
|
|
157 |
<ul class="content"> |
|
|
158 |
<li class=""><a href="Anim.html" title="Anim">Anim</a></li> |
|
|
159 |
<li class=""><a href="Easing.html" title="Easing">Easing</a></li> |
|
|
160 |
<li class=""><a href="Plugin.NodeFX.html" title="Plugin.NodeFX">Plugin.NodeFX</a></li> |
|
|
161 |
</ul> |
|
|
162 |
</div> |
|
|
163 |
|
|
|
164 |
<div id="fileList" class="module"> |
|
|
165 |
<h4>Files</h4> |
|
|
166 |
<ul class="content"> |
|
|
167 |
<li class=""><a href="anim-color.js.html" title="anim-color.js">anim-color.js</a></li> |
|
|
168 |
<li class="selected"><a href="anim-curve.js.html" title="anim-curve.js">anim-curve.js</a></li> |
|
|
169 |
<li class=""><a href="anim-easing.js.html" title="anim-easing.js">anim-easing.js</a></li> |
|
|
170 |
<li class=""><a href="anim-node-plugin.js.html" title="anim-node-plugin.js">anim-node-plugin.js</a></li> |
|
|
171 |
<li class=""><a href="anim-scroll.js.html" title="anim-scroll.js">anim-scroll.js</a></li> |
|
|
172 |
<li class=""><a href="anim-xy.js.html" title="anim-xy.js">anim-xy.js</a></li> |
|
|
173 |
<li class=""><a href="anim.js.html" title="anim.js">anim.js</a></li> |
|
|
174 |
</ul> |
|
|
175 |
</div> |
|
|
176 |
|
|
|
177 |
|
|
|
178 |
|
|
|
179 |
|
|
|
180 |
|
|
|
181 |
</div> |
|
|
182 |
</div> |
|
|
183 |
</div> |
|
|
184 |
<div id="ft"> |
|
|
185 |
<hr /> |
|
|
186 |
Copyright © 2009 Yahoo! Inc. All rights reserved. |
|
|
187 |
</div> |
|
|
188 |
</div> |
|
|
189 |
<script type="text/javascript"> |
|
|
190 |
ALL_YUI_PROPS = [{"access": "", "host": "Easing", "name": "backBoth", "url": "Easing.html#method_backBoth", "type": "method"}, {"access": "", "host": "Easing", "name": "backIn", "url": "Easing.html#method_backIn", "type": "method"}, {"access": "", "host": "Easing", "name": "backOut", "url": "Easing.html#method_backOut", "type": "method"}, {"access": "", "host": "Anim", "name": "behaviors", "url": "Anim.html#property_behaviors", "type": "property"}, {"access": "", "host": "Easing", "name": "bounceBoth", "url": "Easing.html#method_bounceBoth", "type": "method"}, {"access": "", "host": "Easing", "name": "bounceIn", "url": "Easing.html#method_bounceIn", "type": "method"}, {"access": "", "host": "Easing", "name": "bounceOut", "url": "Easing.html#method_bounceOut", "type": "method"}, {"access": "", "host": "Anim", "name": "DEFAULT_GETTER", "url": "Anim.html#property_DEFAULT_GETTER", "type": "property"}, {"access": "", "host": "Anim", "name": "DEFAULT_SETTER", "url": "Anim.html#property_DEFAULT_SETTER", "type": "property"}, {"access": "", "host": "Anim", "name": "DEFAULT_UNIT", "url": "Anim.html#property_DEFAULT_UNIT", "type": "property"}, {"access": "", "host": "Anim", "name": "direction", "url": "Anim.html#config_direction", "type": "config"}, {"access": "", "host": "Anim", "name": "directionChange", "url": "Anim.html#event_directionChange", "type": "event"}, {"access": "", "host": "Anim", "name": "duration", "url": "Anim.html#config_duration", "type": "config"}, {"access": "", "host": "Anim", "name": "durationChange", "url": "Anim.html#event_durationChange", "type": "event"}, {"access": "", "host": "Easing", "name": "easeBoth", "url": "Easing.html#method_easeBoth", "type": "method"}, {"access": "", "host": "Easing", "name": "easeBothStrong", "url": "Easing.html#method_easeBothStrong", "type": "method"}, {"access": "", "host": "Easing", "name": "easeIn", "url": "Easing.html#method_easeIn", "type": "method"}, {"access": "", "host": "Easing", "name": "easeInStrong", "url": "Easing.html#method_easeInStrong", "type": "method"}, {"access": "", "host": "Easing", "name": "easeNone", "url": "Easing.html#method_easeNone", "type": "method"}, {"access": "", "host": "Easing", "name": "easeOut", "url": "Easing.html#method_easeOut", "type": "method"}, {"access": "", "host": "Easing", "name": "easeOutStrong", "url": "Easing.html#method_easeOutStrong", "type": "method"}, {"access": "", "host": "Anim", "name": "easing", "url": "Anim.html#config_easing", "type": "config"}, {"access": "", "host": "Anim", "name": "easingChange", "url": "Anim.html#event_easingChange", "type": "event"}, {"access": "", "host": "Anim", "name": "elapsedTime", "url": "Anim.html#config_elapsedTime", "type": "config"}, {"access": "", "host": "Anim", "name": "elapsedTimeChange", "url": "Anim.html#event_elapsedTimeChange", "type": "event"}, {"access": "", "host": "Easing", "name": "elasticBoth", "url": "Easing.html#method_elasticBoth", "type": "method"}, {"access": "", "host": "Easing", "name": "elasticIn", "url": "Easing.html#method_elasticIn", "type": "method"}, {"access": "", "host": "Easing", "name": "elasticOut", "url": "Easing.html#method_elasticOut", "type": "method"}, {"access": "", "host": "Anim", "name": "end", "url": "Anim.html#event_end", "type": "event"}, {"access": "", "host": "Anim", "name": "from", "url": "Anim.html#config_from", "type": "config"}, {"access": "", "host": "Anim", "name": "fromChange", "url": "Anim.html#event_fromChange", "type": "event"}, {"access": "", "host": "Anim", "name": "getBezier", "url": "Anim.html#method_getBezier", "type": "method"}, {"access": "", "host": "Anim", "name": "iteration", "url": "Anim.html#event_iteration", "type": "event"}, {"access": "", "host": "Anim", "name": "iterationCount", "url": "Anim.html#config_iterationCount", "type": "config"}, {"access": "", "host": "Anim", "name": "iterationCountChange", "url": "Anim.html#event_iterationCountChange", "type": "event"}, {"access": "", "host": "Anim", "name": "iterations", "url": "Anim.html#config_iterations", "type": "config"}, {"access": "", "host": "Anim", "name": "iterationsChange", "url": "Anim.html#event_iterationsChange", "type": "event"}, {"access": "", "host": "Anim", "name": "node", "url": "Anim.html#config_node", "type": "config"}, {"access": "", "host": "Anim", "name": "nodeChange", "url": "Anim.html#event_nodeChange", "type": "event"}, {"access": "", "host": "Anim", "name": "pause", "url": "Anim.html#method_pause", "type": "method"}, {"access": "", "host": "Anim", "name": "pause", "url": "Anim.html#event_pause", "type": "event"}, {"access": "", "host": "Anim", "name": "RE_DEFAULT_UNIT", "url": "Anim.html#property_RE_DEFAULT_UNIT", "type": "property"}, {"access": "", "host": "Anim", "name": "resume", "url": "Anim.html#event_resume", "type": "event"}, {"access": "", "host": "Anim", "name": "reverse", "url": "Anim.html#config_reverse", "type": "config"}, {"access": "", "host": "Anim", "name": "reverseChange", "url": "Anim.html#event_reverseChange", "type": "event"}, {"access": "", "host": "Anim", "name": "run", "url": "Anim.html#method_run", "type": "method"}, {"access": "private", "host": "Anim", "name": "_runFrame", "url": "Anim.html#method__runFrame", "type": "method"}, {"access": "", "host": "Anim", "name": "running", "url": "Anim.html#config_running", "type": "config"}, {"access": "", "host": "Anim", "name": "runningChange", "url": "Anim.html#event_runningChange", "type": "event"}, {"access": "", "host": "Anim", "name": "start", "url": "Anim.html#event_start", "type": "event"}, {"access": "", "host": "Anim", "name": "startTime", "url": "Anim.html#config_startTime", "type": "config"}, {"access": "", "host": "Anim", "name": "startTimeChange", "url": "Anim.html#event_startTimeChange", "type": "event"}, {"access": "", "host": "Anim", "name": "stop", "url": "Anim.html#method_stop", "type": "method"}, {"access": "", "host": "Anim", "name": "to", "url": "Anim.html#config_to", "type": "config"}, {"access": "", "host": "Anim", "name": "toChange", "url": "Anim.html#event_toChange", "type": "event"}, {"access": "", "host": "Anim", "name": "tween", "url": "Anim.html#event_tween", "type": "event"}]; |
|
|
191 |
</script> |
|
|
192 |
</body> |
|
|
193 |
</html> |