zoukankan      html  css  js  c++  java
  • State and Effect demo,状态和效果简单示例

    from:Flex与ActionScript3.0程序开发

    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" minWidth="955" minHeight="600" width="467" height="486">
    	<mx:transitions>
    		<mx:Transition fromState="*" toState="*">
    			<mx:Parallel targets="{[panel1,panel2,panel3]}">
    				<mx:Resize>
    				</mx:Resize>
    				<mx:Move>
    				</mx:Move>
    			</mx:Parallel>
    		</mx:Transition>
    	</mx:transitions>
    	<mx:states>
    		<mx:State name="state02">
    			<mx:SetProperty target="{panel1}" name="width" value="143"/>
    			<mx:SetProperty target="{panel1}" name="height" value="143"/>
    			<mx:SetProperty target="{panel1}" name="x" value="54"/>
    			<mx:SetProperty target="{panel1}" name="y" value="333"/>
    			<mx:SetProperty target="{panel2}" name="x" value="10"/>
    			<mx:SetProperty target="{panel2}" name="y" value="10"/>
    			<mx:SetProperty target="{panel2}" name="width" value="447"/>
    			<mx:SetProperty target="{panel2}" name="height" value="300"/>
    		</mx:State>
    		<mx:State name="state03">
    			<mx:SetProperty target="{panel1}" name="width" value="143"/>
    			<mx:SetProperty target="{panel1}" name="height" value="143"/>
    			<mx:SetProperty target="{panel1}" name="x" value="54"/>
    			<mx:SetProperty target="{panel1}" name="y" value="333"/>
    			
    			
    			<mx:SetProperty target="{panel3}" name="x" value="10"/>
    			<mx:SetProperty target="{panel3}" name="y" value="10"/>			
    			<mx:SetProperty target="{panel3}" name="width" value="447"/>
    			<mx:SetProperty target="{panel3}" name="height" value="300"/>
    			
    			<mx:SetProperty target="{panel2}" name="x" value="274"/>
    			<mx:SetProperty target="{panel2}" name="y" value="333"/>
    			
    		</mx:State>
    	</mx:states>
    	<mx:Panel x="10" y="10" width="447" height="300" layout="absolute" title="panel1" id="panel1" click="this.currentState='';">
    	</mx:Panel>
    	<mx:Panel x="54" y="333" width="143" height="143" layout="absolute" title="panel2" id="panel2" click="this.currentState='state02';">
    	</mx:Panel>
    	<mx:Panel x="274" y="333" width="143" height="143" layout="absolute" title="panel3" id="panel3" click="this.currentState='state03';">
    	</mx:Panel>
    	
    </mx:Application>
    

  • 相关阅读:
    Fiddler 教程
    ios iOS手势识别的详细使用(拖动,缩放,旋转,点击,手势依赖,自定义手势)
    ios 生成一个动态的随机的头像/随机数的操作
    在工程中如何使用一个公用的页面
    使用手势,让键盘在点击空白处消失
    ios开发之--iOS 11适配:iOS11导航栏返回偏移
    svn 操作字母的提示
    字面量
    控制 打开和关闭远程推送通知
    常见结构体 日期 字符串的操作 很实用
  • 原文地址:https://www.cnblogs.com/wucg/p/2086648.html
Copyright © 2011-2022 走看看