⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sequenceexample.mxml

📁 《Flex第一步:基于ActionScript 3.0的Flex 2应用开发》采用概念讲解与实例结合的方式
💻 MXML
字号:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
	
	<mx:Style source="style.css" />
	<mx:Sequence id="Effect_1">
		<mx:Dissolve target="{Canvas_1}" duration="2500"
			 alphaFrom="0.1" alphaTo="1" color="#6633ff" />
		<mx:Pause duration="1000" />
		<mx:Zoom target="{Canvas_1}" zoomHeightFrom="0.01" zoomHeightTo="1" />
		<mx:Zoom target="{Canvas_2}" zoomHeightFrom="0.01" zoomHeightTo="1" />
	</mx:Sequence>
	<mx:HDividedBox styleName="box" x="32.75" y="28" width="334.5" height="253"  barColor="#408080">
		<mx:Canvas width="50%" height="100%">
			<mx:Canvas id="Canvas_1" x="33" y="76" width="94" height="72" styleName="smallBox">
				<mx:Text x="10" y="24" text="Canvas1"/>
			</mx:Canvas>			
		</mx:Canvas>
		<mx:Canvas width="50%" height="100%">
			<mx:Canvas id="Canvas_2" x="33" y="76" width="94" height="72" styleName="smallBox">
				<mx:Text x="10" y="24" text="Canvas2"/>
			</mx:Canvas>
		</mx:Canvas>
	</mx:HDividedBox>
	<mx:Button x="32" y="313" label="寮

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -