`
hanyiduo
  • 浏览: 77551 次
  • 性别: Icon_minigender_1
  • 来自: 沈阳
社区版块
存档分类
最新评论

动态显示效果1

    博客分类:
  • Flex
XML 
阅读更多
<?xml version="1.0" encoding="utf-8"?> 
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" verticalAlign="middle" backgroundColor="white"> 
  
    <mx:Script> 
        <![CDATA[ 
            /* Import all the easing classes so its 
               easier to switch between them on the 
               fly without tweaking import statements. */ 
            import mx.effects.easing.*; 
        ]]> 
    </mx:Script> 
  
    <mx:Style> 
        @font-face { 
            src: url('assets/base02.ttf'); 
            font-family: Base02; 
        } 
  
        .MyEmbeddedFont { 
            font-family: Base02; 
            font-size: 16px; 
        } 
    </mx:Style> 
  
    <!-- Set zoom effect for 2.5 seconds (2500 milliseconds) and use the Elastic.easeOut easing method. --> 
    <mx:Zoom id="zoom" duration="2500" easingFunction="Elastic.easeOut" target="{embeddedText}" /> 
  
    <!-- Use advanced font anti-aliasing for the embedded font, set the rotation to 5 degrees, alpha to 80% and loop the animation. --> 
    <mx:Text id="embeddedText" text="The quick brown fox jumped over the lazy dog." styleName="MyEmbeddedFont" rotation="5" alpha="0.8" fontAntiAliasType="advanced" creationComplete="zoom.play();" effectEnd="zoom.play()" /> 
  
</mx:Application>

  • 大小: 16 KB
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics