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>
    点击变色
  • 相关阅读:
    【计算机视觉】欧拉角Pitch/Yaw/Roll
    【leetcode】101-Symmetric Tree
    【leetcode】100-Same Tree
    【leetcode】88-Merge Sorted Array
    【leetcode】83-Remove Duplicates from Sorted List
    【leetcode】70-ClimbingStairs
    【计算机视觉】KCF算法
    第1章 Linux系统简介
    第1课 进阶高手的大门
    第3章 在对象之间搬移特性(2):提炼类、类的内联化
  • 原文地址:https://www.cnblogs.com/zwl12549/p/806813.html
Copyright © 2011-2022 走看看