zoukankan      html  css  js  c++  java
  • Adding animations and effects to Flex tool tips

    The following example shows how you can add custom animation and effects when displaying a tool tip in Flex
    <?xml version="1.0" encoding="utf-8"?>
    <!-- http://blog.flexexamples.com/2007/09/04/adding-animations-and-effects-to-flex-tool-tips/ -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
            layout
    ="vertical"
            verticalAlign
    ="middle"
            backgroundColor
    ="white"
            creationComplete
    ="init()">

        
    <mx:Script>
            
    <![CDATA[
                import mx.managers.ToolTipManager;

                private function init():void {
                    ToolTipManager.hideDelay = 2000;
                    ToolTipManager.showEffect = rotate;
                    ToolTipManager.hideEffect = zoom;
                }
            
    ]]>
        
    </mx:Script>

        
    <mx:Style>
            @font-face {
                src: url("./fonts/arial.ttf");
                fontFamily: "ArialEmbedded";
            }

            ToolTip {
                fontFamily: ArialEmbedded;
            }
        
    </mx:Style>

        
    <mx:Rotate id="rotate" />
        
    <mx:Zoom id="zoom" />

        
    <mx:Button label="Roll over me to see tool tip"
                toolTip
    ="The quick brown fox" />

    </mx:Application>

  • 相关阅读:
    Vue.Draggable 文档总结
    JS深度判断两个对象字段相同
    vue防止按钮在短时间内被多次点击的方法
    设计模式学习-单例模式
    设计模式学习---策略模式
    C#7.0中的解构功能---Deconstruct
    讲一下Asp.net core MVC2.1 里面的 ApiControllerAttribute
    .NET Core 使用RabbitMQ
    IL指令详细表
    redis 4.0.13 -- 哨兵模式
  • 原文地址:https://www.cnblogs.com/taobataoma/p/1037095.html
Copyright © 2011-2022 走看看