﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>语源科技BlogJava-cecily.yu</title><link>http://www.blogjava.net/cecilyyu/</link><description>~~~~~~~</description><language>zh-cn</language><lastBuildDate>Mon, 04 May 2026 01:59:11 GMT</lastBuildDate><pubDate>Mon, 04 May 2026 01:59:11 GMT</pubDate><ttl>60</ttl><item><title>js Tween算法 水果栋特效</title><link>http://www.blogjava.net/cecilyyu/archive/2009/09/22/295949.html</link><dc:creator>郁</dc:creator><author>郁</author><pubDate>Tue, 22 Sep 2009 01:48:00 GMT</pubDate><guid>http://www.blogjava.net/cecilyyu/archive/2009/09/22/295949.html</guid><wfw:comment>http://www.blogjava.net/cecilyyu/comments/295949.html</wfw:comment><comments>http://www.blogjava.net/cecilyyu/archive/2009/09/22/295949.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/cecilyyu/comments/commentRss/295949.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/cecilyyu/services/trackbacks/295949.html</trackback:ping><description><![CDATA[<p>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>"&gt;<br />
&lt;html xmlns="<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>"&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;<br />
&lt;title&gt;无标题文档&lt;/title&gt;<br />
&lt;script type="text/javas<wbr>cript"&gt;<br />
&nbsp;var Tween = {<br />
&nbsp;&nbsp;Bounce: {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; easeIn: function(t,b,c,d){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return c - Tween.Bounce.easeOut(d-t, 0, c, d) + b;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; },<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; easeOut: function(t,b,c,d){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if ((t/=d) &lt; (1/2.75)) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return c*(7.5625*t*t) + b;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } else if (t &lt; (2/2.75)) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } else if (t &lt; (2.5/2.75)) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } else {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; },<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; easeInOut: function(t,b,c,d){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (t &lt; d/2) return Tween.Bounce.easeIn(t*2, 0, c, d) * .5 + b;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else return Tween.Bounce.easeOut(t*2-d, 0, c, d) * .5 + c*.5 + b;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br />
&nbsp;&nbsp;&nbsp; }</p>
<p>&nbsp;}<br />
&nbsp;<strong><font color="#ff6600">b为初始值 c为变化值 d为持续时间 t为开始时间</font></strong></p>
<p><strong><font color="#ff6600">d要不配合与步长一起使用&nbsp; 例如</font></strong></p>
<p><strong><font color="#ff6600">这里的步长为3</font></strong></p>
<p><strong><font color="#ff6600">d&#215;3 =c-b</font></strong><br />
&nbsp;var b=-300,c=600,d=300,t=0;<br />
&nbsp;function run(){<br />
&nbsp;&nbsp;var div = document.getElementById("div1");<br />
&nbsp;&nbsp;div.style.left =&nbsp; Math.ceil(Tween.Bounce.easeInOut(t,b,c,d))+"px";<br />
&nbsp;&nbsp;if(t&lt;d){<br />
&nbsp;&nbsp;&nbsp;t+=3;<br />
&nbsp;&nbsp;&nbsp;setTimeout(run,10);<br />
&nbsp;<br />
&nbsp;&nbsp;}<br />
&nbsp;}</p>
<p>&lt;/script&gt;<br />
&lt;/head&gt;</p>
<p>&lt;body on<wbr>load="run();"&gt;<br />
&lt;div style="width:1000px; height:1000px; position:relative; overflow:hidden; background-color:#9966CC"&gt;<br />
&nbsp;&nbsp;&lt;div id="div1" style="width:300px; height:200px; background-color:#0099FF; position:absolute; left:-300px; top:300px;"&gt;<br />
&nbsp;&nbsp;&lt;/div&gt; <br />
&nbsp;&lt;/div&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><font color="#3366ff">完整Tween算法</font></p>
<p style="text-indent: 2em"><font color="#3366ff">var&nbsp;Tween&nbsp;=&nbsp;{</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;Linear:&nbsp;function(t,b,c,d){&nbsp;return&nbsp;c*t/d&nbsp;+&nbsp;b;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;Quad:&nbsp;{</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeIn:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c*(t/=d)*t&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeOut:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;-c&nbsp;*(t/=d)*(t-2)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeInOut:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;((t/=d/2)&nbsp;&lt;&nbsp;1)&nbsp;return&nbsp;c/2*t*t&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;-c/2&nbsp;*&nbsp;((--t)*(t-2)&nbsp;-&nbsp;1)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;Cubic:&nbsp;{</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeIn:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c*(t/=d)*t*t&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeOut:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c*((t=t/d-1)*t*t&nbsp;+&nbsp;1)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeInOut:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;((t/=d/2)&nbsp;&lt;&nbsp;1)&nbsp;return&nbsp;c/2*t*t*t&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c/2*((t-=2)*t*t&nbsp;+&nbsp;2)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;Quart:&nbsp;{</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeIn:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c*(t/=d)*t*t*t&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeOut:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;-c&nbsp;*&nbsp;((t=t/d-1)*t*t*t&nbsp;-&nbsp;1)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeInOut:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;((t/=d/2)&nbsp;&lt;&nbsp;1)&nbsp;return&nbsp;c/2*t*t*t*t&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;-c/2&nbsp;*&nbsp;((t-=2)*t*t*t&nbsp;-&nbsp;2)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;Quint:&nbsp;{</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeIn:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c*(t/=d)*t*t*t*t&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeOut:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c*((t=t/d-1)*t*t*t*t&nbsp;+&nbsp;1)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeInOut:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;((t/=d/2)&nbsp;&lt;&nbsp;1)&nbsp;return&nbsp;c/2*t*t*t*t*t&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c/2*((t-=2)*t*t*t*t&nbsp;+&nbsp;2)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;Sine:&nbsp;{</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeIn:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;-c&nbsp;*&nbsp;Math.cos(t/d&nbsp;*&nbsp;(Math.PI/2))&nbsp;+&nbsp;c&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeOut:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c&nbsp;*&nbsp;Math.sin(t/d&nbsp;*&nbsp;(Math.PI/2))&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeInOut:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;-c/2&nbsp;*&nbsp;(Math.cos(Math.PI*t/d)&nbsp;-&nbsp;1)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;Expo:&nbsp;{</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeIn:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;(t==0)&nbsp;?&nbsp;b&nbsp;:&nbsp;c&nbsp;*&nbsp;Math.pow(2,&nbsp;10&nbsp;*&nbsp;(t/d&nbsp;-&nbsp;1))&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeOut:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;(t==d)&nbsp;?&nbsp;b+c&nbsp;:&nbsp;c&nbsp;*&nbsp;(-Math.pow(2,&nbsp;-10&nbsp;*&nbsp;t/d)&nbsp;+&nbsp;1)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeInOut:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(t==0)&nbsp;return&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(t==d)&nbsp;return&nbsp;b+c;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;((t/=d/2)&nbsp;&lt;&nbsp;1)&nbsp;return&nbsp;c/2&nbsp;*&nbsp;Math.pow(2,&nbsp;10&nbsp;*&nbsp;(t&nbsp;-&nbsp;1))&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c/2&nbsp;*&nbsp;(-Math.pow(2,&nbsp;-10&nbsp;*&nbsp;--t)&nbsp;+&nbsp;2)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;Circ:&nbsp;{</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeIn:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;-c&nbsp;*&nbsp;(Math.sqrt(1&nbsp;-&nbsp;(t/=d)*t)&nbsp;-&nbsp;1)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeOut:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c&nbsp;*&nbsp;Math.sqrt(1&nbsp;-&nbsp;(t=t/d-1)*t)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeInOut:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;((t/=d/2)&nbsp;&lt;&nbsp;1)&nbsp;return&nbsp;-c/2&nbsp;*&nbsp;(Math.sqrt(1&nbsp;-&nbsp;t*t)&nbsp;-&nbsp;1)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c/2&nbsp;*&nbsp;(Math.sqrt(1&nbsp;-&nbsp;(t-=2)*t)&nbsp;+&nbsp;1)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;Elastic:&nbsp;{</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeIn:&nbsp;function(t,b,c,d,a,p){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(t==0)&nbsp;return&nbsp;b;&nbsp;&nbsp;if&nbsp;((t/=d)==1)&nbsp;return&nbsp;b+c;&nbsp;&nbsp;if&nbsp;(!p)&nbsp;p=d*.3;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(!a&nbsp;||&nbsp;a&nbsp;&lt;&nbsp;Math.abs(c))&nbsp;{&nbsp;a=c;&nbsp;var&nbsp;s=p/4;&nbsp;}</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else&nbsp;var&nbsp;s&nbsp;=&nbsp;p/(2*Math.PI)&nbsp;*&nbsp;Math.asin&nbsp;(c/a);</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;-(a*Math.pow(2,10*(t-=1))&nbsp;*&nbsp;Math.sin(&nbsp;(t*d-s)*(2*Math.PI)/p&nbsp;))&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeOut:&nbsp;function(t,b,c,d,a,p){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(t==0)&nbsp;return&nbsp;b;&nbsp;&nbsp;if&nbsp;((t/=d)==1)&nbsp;return&nbsp;b+c;&nbsp;&nbsp;if&nbsp;(!p)&nbsp;p=d*.3;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(!a&nbsp;||&nbsp;a&nbsp;&lt;&nbsp;Math.abs(c))&nbsp;{&nbsp;a=c;&nbsp;var&nbsp;s=p/4;&nbsp;}</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else&nbsp;var&nbsp;s&nbsp;=&nbsp;p/(2*Math.PI)&nbsp;*&nbsp;Math.asin&nbsp;(c/a);</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;(a*Math.pow(2,-10*t)&nbsp;*&nbsp;Math.sin(&nbsp;(t*d-s)*(2*Math.PI)/p&nbsp;)&nbsp;+&nbsp;c&nbsp;+&nbsp;b);</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeInOut:&nbsp;function(t,b,c,d,a,p){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(t==0)&nbsp;return&nbsp;b;&nbsp;&nbsp;if&nbsp;((t/=d/2)==2)&nbsp;return&nbsp;b+c;&nbsp;&nbsp;if&nbsp;(!p)&nbsp;p=d*(.3*1.5);</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(!a&nbsp;||&nbsp;a&nbsp;&lt;&nbsp;Math.abs(c))&nbsp;{&nbsp;a=c;&nbsp;var&nbsp;s=p/4;&nbsp;}</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else&nbsp;var&nbsp;s&nbsp;=&nbsp;p/(2*Math.PI)&nbsp;*&nbsp;Math.asin&nbsp;(c/a);</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(t&nbsp;&lt;&nbsp;1)&nbsp;return&nbsp;-.5*(a*Math.pow(2,10*(t-=1))&nbsp;*&nbsp;Math.sin(&nbsp;(t*d-s)*(2*Math.PI)/p&nbsp;))&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;a*Math.pow(2,-10*(t-=1))&nbsp;*&nbsp;Math.sin(&nbsp;(t*d-s)*(2*Math.PI)/p&nbsp;)*.5&nbsp;+&nbsp;c&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;Back:&nbsp;{</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeIn:&nbsp;function(t,b,c,d,s){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(s&nbsp;==&nbsp;undefined)&nbsp;s&nbsp;=&nbsp;1.70158;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c*(t/=d)*t*((s+1)*t&nbsp;-&nbsp;s)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeOut:&nbsp;function(t,b,c,d,s){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(s&nbsp;==&nbsp;undefined)&nbsp;s&nbsp;=&nbsp;1.70158;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c*((t=t/d-1)*t*((s+1)*t&nbsp;+&nbsp;s)&nbsp;+&nbsp;1)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeInOut:&nbsp;function(t,b,c,d,s){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(s&nbsp;==&nbsp;undefined)&nbsp;s&nbsp;=&nbsp;1.70158;&nbsp;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;((t/=d/2)&nbsp;&lt;&nbsp;1)&nbsp;return&nbsp;c/2*(t*t*(((s*=(1.525))+1)*t&nbsp;-&nbsp;s))&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c/2*((t-=2)*t*(((s*=(1.525))+1)*t&nbsp;+&nbsp;s)&nbsp;+&nbsp;2)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;Bounce:&nbsp;{</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeIn:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c&nbsp;-&nbsp;Tween.Bounce.easeOut(d-t,&nbsp;0,&nbsp;c,&nbsp;d)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeOut:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;((t/=d)&nbsp;&lt;&nbsp;(1/2.75))&nbsp;{</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c*(7.5625*t*t)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;else&nbsp;if&nbsp;(t&nbsp;&lt;&nbsp;(2/2.75))&nbsp;{</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c*(7.5625*(t-=(1.5/2.75))*t&nbsp;+&nbsp;.75)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;else&nbsp;if&nbsp;(t&nbsp;&lt;&nbsp;(2.5/2.75))&nbsp;{</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c*(7.5625*(t-=(2.25/2.75))*t&nbsp;+&nbsp;.9375)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;else&nbsp;{</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;c*(7.5625*(t-=(2.625/2.75))*t&nbsp;+&nbsp;.984375)&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;easeInOut:&nbsp;function(t,b,c,d){</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(t&nbsp;&lt;&nbsp;d/2)&nbsp;return&nbsp;Tween.Bounce.easeIn(t*2,&nbsp;0,&nbsp;c,&nbsp;d)&nbsp;*&nbsp;.5&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else&nbsp;return&nbsp;Tween.Bounce.easeOut(t*2-d,&nbsp;0,&nbsp;c,&nbsp;d)&nbsp;*&nbsp;.5&nbsp;+&nbsp;c*.5&nbsp;+&nbsp;b;</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</font></p>
<p style="text-indent: 2em"><font color="#3366ff">&nbsp;&nbsp;&nbsp;&nbsp;}</font></p>
<p style="text-indent: 2em"><font color="#3366ff">}</font></p>
<p style="text-indent: 2em"><font color="#3366ff"></font>&nbsp;</p>
<p style="text-indent: 2em"><font color="#3366ff">参考网址<a href="http://www.cnblogs.com/cloudgamer/archive/2009/01/06/Tween.html">http://www.cnblogs.com/cloudgamer/archive/2009/01/06/Tween.html</a></font></p><img src ="http://www.blogjava.net/cecilyyu/aggbug/295949.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/cecilyyu/" target="_blank">郁</a> 2009-09-22 09:48 <a href="http://www.blogjava.net/cecilyyu/archive/2009/09/22/295949.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>