zoukankan      html  css  js  c++  java
  • ajax.net应用

       <ajaxToolkit:AnimationExtender ID="AnimationExample2A" runat="server" TargetControlID="Example2A">
            
    <Animations>
                
    <OnLoad>
                    
    <OpacityAction Opacity=".2" />
                
    </OnLoad>
                
    <OnHoverOver>
                    
    <FadeIn Duration=".25" Fps="20" MinimumOpacity=".2" MaximumOpacity=".8" />
                
    </OnHoverOver>
                
    <OnHoverOut>
                    
    <FadeOut Duration=".25" Fps="20" MinimumOpacity=".2" MaximumOpacity=".8" />
                
    </OnHoverOut>
            
    </Animations>
        
    </ajaxToolkit:AnimationExtender>
    鼠标移上渐隐


        <ajaxToolkit:AnimationExtender ID="AnimationExample5A" runat="server" TargetControlID="Example5A">
            
    <Animations>
                
    <OnClick>
                    
    <Sequence>
                        
    <EnableAction Enabled="false" />
                        
    <Color AnimationTarget="master_contentplaceholder"
                            Duration
    ="1"
                            StartValue
    ="#EFEFEF"
                            EndValue
    ="#FF0000"
                            Property
    ="style"
                            PropertyKey
    ="backgroundColor" />
                        
    <Color AnimationTarget="master_contentplaceholder"
                            Duration
    ="1"
                            StartValue
    ="#FF0000"
                            EndValue
    ="#EFEFEF"
                            Property
    ="style"
                            PropertyKey
    ="backgroundColor" />
                        
    <EnableAction Enabled="true" />
                    
    </Sequence>
                
    </OnClick>
            
    </Animations>
        
    </ajaxToolkit:AnimationExtender>
    点击变色
  • 相关阅读:
    EXTJS4.2——0.简介
    什么是JDBC?
    Applet和普通的Java应用程序有什么区别?
    final关键字、finally代码块和finalize()方法有什么区别?
    throw和throws有什么区别
    Java中的两种异常类型是什么?他们有什么区别?
    Java堆的结构是什么样子的?什么是堆中的永久代(Perm Gen space)?
    flash插件
    算法复杂度分析中的符号(大Θ符号、大Ο符号...)
    Enumeration接口和Iterator接口的区别有哪些?
  • 原文地址:https://www.cnblogs.com/zwl12549/p/806813.html
Copyright © 2011-2022 走看看