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

📄 busy.mxml

📁 QS我也没用过
💻 MXML
字号:
<?xml version="1.0" encoding="utf-8"?>
<Canvas xmlns="http://www.adobe.com/2006/mxml" horizontalScrollPolicy="off" verticalScrollPolicy="off"
	xmlns:local="*"
	xmlns:qcon="qs.controls.*" 
	xmlns:qg="qs.graphics.*"
	> 
	<Script>
		<![CDATA[
			[Bindable] public var progress:Number = 0;
		]]>
	</Script>
	<qg:Ellipse id="loadingFill" alpha=".6" percentWidth="{100 * progress}"   percentHeight="{100 * progress}"  horizontalCenter="0" verticalCenter="0">
		<qg:fill>
			<SolidColor color="#FFFFFF" />
		</qg:fill>
	</qg:Ellipse>				
	<qg:Ellipse id="loadingRing" alpha=".8" width="100%" height="100%" horizontalCenter="0" verticalCenter="0">
		<qg:stroke>
			<Stroke color="#FFFFFF" weight="1" />
		</qg:stroke>
	</qg:Ellipse>					
</Canvas>

⌨️ 快捷键说明

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