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

📄 projectpanellargeimageloadinganim.mxml

📁 flex 实现的一个showcase 喜欢flex的朋友可以
💻 MXML
字号:
<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas
	xmlns:mx="http://www.adobe.com/2006/mxml"
	xmlns:controls="com.flexdotorg.controls.*"
	
	width="64"
	height="45"
	
	backgroundAlpha="0"
	backgroundColor="0x009900"
	
	horizontalScrollPolicy="off"
	verticalScrollPolicy="off"
	
	creationComplete="creationCompleteHandler(event)">
	
	
	<mx:Script>
		<![CDATA[
		
			//////////////////////////////////////////////////
			//initialization
			
			private function creationCompleteHandler(event:Event):void {
				loadingIcon.filters = new Array(new GlowFilter(0x000000, 0.7, 8,8, 2, 1));
			}
			
			
		]]>
	</mx:Script>
	
	
	<mx:Label styleName="standardText" text="Loading Image" color="0xffffff" textAlign="center" />
	<controls:LoadingIcon id="loadingIcon" x="23" y="23" />
	
	
</mx:Canvas>

⌨️ 快捷键说明

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