<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>中文Flex例子 &#187; showEffect</title>
	<atom:link href="http://blog.minidx.com/tag/showeffect/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.minidx.com</link>
	<description>中文Adobe Flex例子,Flex实例教程,RIA资源,全文检索技术,算法和数据结构</description>
	<lastBuildDate>Thu, 31 Mar 2011 03:22:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Flex 4中如何创建特定显示效果Spark Panel的例子</title>
		<link>http://blog.minidx.com/2009/10/31/3009.html</link>
		<comments>http://blog.minidx.com/2009/10/31/3009.html#comments</comments>
		<pubDate>Sat, 31 Oct 2009 10:07:05 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[Panel]]></category>
		<category><![CDATA[hideEffect]]></category>
		<category><![CDATA[showEffect]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=3009</guid>
		<description><![CDATA[接下来的例子演示了Flex 4中如何通过showEffect和hideEffect，创建特定显示，隐藏效果Spark Panel。
让我们先来看一下Demo（可以点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
下面是main.mxml：
&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;s:Application&#160;name=&#34;Spark_Panel_showEffect_test&#34;
&#160; &#160; &#160; &#160; xmlns:fx=&#34;http://ns.adobe.com/mxml/2009&#34;
&#160; &#160; &#160; &#160; xmlns:s=&#34;library://ns.adobe.com/flex/spark&#34;
&#160; &#160; &#160; &#160; xmlns:mx=&#34;library://ns.adobe.com/flex/halo&#34;&#62;
&#160; &#160; &#60;s:layout&#62;
&#160; &#160; &#160; &#160; &#60;s:VerticalLayout&#160;/&#62;
&#160; &#160; &#60;/s:layout&#62;
&#160;
&#160; &#160; &#60;fx:Declarations&#62;
&#160; &#160; &#160; &#160; &#60;s:Parallel&#160;id=&#34;showEff&#34;&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#60;s:Rotate3D&#160;angleYFrom=&#34;-90&#34; angleYTo=&#34;0&#34; /&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#60;s:Fade&#160;alphaFrom=&#34;0.0&#34; alphaTo=&#34;1.0&#34; /&#62;
&#160; &#160; &#160; &#160; &#60;/s:Parallel&#62;
&#160;
&#160; &#160; &#160; &#160; &#60;s:Parallel&#160;id=&#34;hideEff&#34;&#62;
&#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/10/31/3009.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex中如何利用setStyle()函数实现图片showEffect和hideEffect效果的例子</title>
		<link>http://blog.minidx.com/2009/04/22/2382.html</link>
		<comments>http://blog.minidx.com/2009/04/22/2382.html#comments</comments>
		<pubDate>Wed, 22 Apr 2009 00:40:42 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[Image]]></category>
		<category><![CDATA[Fade]]></category>
		<category><![CDATA[hideEffect]]></category>
		<category><![CDATA[rotate()]]></category>
		<category><![CDATA[showEffect]]></category>
		<category><![CDATA[VBox]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=2382</guid>
		<description><![CDATA[接下来的例子演示了Flex中如何利用setStyle()函数，实现showEffect和hideEffect效果。
让我们先来看一下Demo（可以右键View Source或点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
Download: main.mxml&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;mx:Application&#160;xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34;
&#160; &#160; &#160; &#160; layout=&#34;vertical&#34;
&#160; &#160; &#160; &#160; verticalAlign=&#34;middle&#34;
&#160; &#160; &#160; &#160; backgroundColor=&#34;white&#34;
&#160; &#160; &#160; &#160; creationComplete=&#34;init();&#34;&#62;
&#160;
&#160; &#160; &#60;mx:Script&#62;
&#160; &#160; &#160; &#160; &#60;![CDATA[
&#160; &#160; &#160; &#160; &#160; &#160; import mx.effects.easing.*;
&#160;
&#160; &#160; &#160; &#160; &#160; &#160; private function init():void {
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; img.setStyle(&#34;showEffect&#34;, rotate);
&#160; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2009/04/22/2382.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex中如何在某一容器通过visible属性或者使用hideEffect以及showEffect效果时触发一些特效（本例为缩放效果）的例子</title>
		<link>http://blog.minidx.com/2008/10/06/1489.html</link>
		<comments>http://blog.minidx.com/2008/10/06/1489.html#comments</comments>
		<pubDate>Mon, 06 Oct 2008 15:03:15 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[hideEffect]]></category>
		<category><![CDATA[Panel]]></category>
		<category><![CDATA[showEffect]]></category>
		<category><![CDATA[visible]]></category>
		<category><![CDATA[Zoom]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/?p=1489</guid>
		<description><![CDATA[接下来的例子演示了Flex中如何在某一容器通过visible属性或者使用hideEffect以及showEffect效果时，触发一些特效。
让我们先来看一下Demo（可以右键View Source或点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
Download: main.mxml&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;mx:Application&#160;xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34;
&#160; &#160; &#160; &#160; layout=&#34;vertical&#34;
&#160; &#160; &#160; &#160; verticalAlign=&#34;middle&#34;
&#160; &#160; &#160; &#160; backgroundColor=&#34;white&#34;&#62;
&#160;
&#160; &#160; &#60;mx:Zoom&#160;id=&#34;zoom&#34; /&#62;
&#160;
&#160; &#160; &#60;mx:ApplicationControlBar&#160;dock=&#34;true&#34;&#62;
&#160; &#160; &#160; &#160; &#60;mx:Button&#160;label=&#34;hide&#34;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; click=&#34;panel.visible = false;&#34;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; enabled=&#34;{panel.visible}&#34;&#160;/&#62;
&#160; &#160; &#160; &#160; &#60;mx:Button&#160;label=&#34;show&#34;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2008/10/06/1489.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex中如何给tool tips添加一个比较Cool的动画特效的例子</title>
		<link>http://blog.minidx.com/2008/08/21/1287.html</link>
		<comments>http://blog.minidx.com/2008/08/21/1287.html#comments</comments>
		<pubDate>Thu, 21 Aug 2008 00:54:04 +0000</pubDate>
		<dc:creator>Minidxer</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[hideDelay]]></category>
		<category><![CDATA[hideEffect]]></category>
		<category><![CDATA[showEffect]]></category>
		<category><![CDATA[toolTip]]></category>
		<category><![CDATA[ToolTipManager]]></category>

		<guid isPermaLink="false">http://blog.minidx.com/2008/08/21/1287.html</guid>
		<description><![CDATA[接下来的例子演示了Flex中如何给tool tips添加一个比较Cool的动画特效。
让我们先来看一下Demo（可以右键View Source或点击这里察看源代码）：









下面是完整代码(或点击这里察看)：
Download: main.mxml&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;mx:Application&#160;xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34;
&#160; &#160; &#160; &#160; layout=&#34;vertical&#34;
&#160; &#160; &#160; &#160; verticalAlign=&#34;middle&#34;
&#160; &#160; &#160; &#160; backgroundColor=&#34;white&#34;
&#160; &#160; &#160; &#160; creationComplete=&#34;init()&#34;&#62;
&#160;
&#160; &#160; &#60;mx:Script&#62;
&#160; &#160; &#160; &#160; &#60;![CDATA[
&#160; &#160; &#160; &#160; &#160; &#160; import mx.managers.ToolTipManager;
&#160;
&#160; &#160; &#160; &#160; &#160; &#160; private function init():void {
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; ToolTipManager.hideDelay = 2000;
&#160; &#160; [...]]]></description>
		<wfw:commentRss>http://blog.minidx.com/2008/08/21/1287.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Database Caching 2/22 queries in 0.585 seconds using disk
Object Caching 361/694 objects using disk

Served from: blog.minidx.com @ 2012-02-09 20:30:34 -->
