zoukankan      html  css  js  c++  java
  • 2007年4月小记

    1、使用ajaxToolkit加载进度渐变。
        <ajaxToolkit:UpdatePanelAnimationExtender ID="upae" runat="server" TargetControlID="upRoleList">
            
    <Animations>
                
    <OnUpdating>
                    
    <Sequence>
                        
    <StyleAction Attribute="overflow" Value="hidden" />
                        <Parallel duration=".25" Fps="30">
                            <FadeOut AnimationTarget="up_container" minimumOpacity=".2" />
                            <%--<Resize Height="0" />--%>
                            <Color AnimationTarget="up_container" EndValue="#FF0000" StartValue="#FFFFFF" Property="style" PropertyKey="backgroundColor"/>
                        </Parallel>
                    </Sequence>
                </OnUpdating>
                <OnUpdated>
                    <Sequence>
                        <Parallel duration=".25" Fps="30">
                            <FadeIn AnimationTarget="up_container" minimumOpacity=".2" />
                            <%--<Resize Height="200" />--%>
                            <Color AnimationTarget="up_container" StartValue="#FF0000" EndValue="#FFFFFF" Property="style" PropertyKey="backgroundColor"/>
                        </Parallel>
                    </Sequence>
                </OnUpdated>
            </Animations>
        </ajaxToolkit:UpdatePanelAnimationExtender>
  • 相关阅读:
    mysql字符集设置
    mysql解压版服务启动方式
    html的表格边框为什么会这么粗?
    通过js获取tinymce4.x的值
    bzoj 3083 树链剖分
    bzoj 1143 二分图最大独立集
    bzoj 2303 并查集
    可持久化数据结构讲解
    bzoj 1072 状压DP
    bzoj 2741 可持久化trie
  • 原文地址:https://www.cnblogs.com/chenjunbiao/p/1760238.html
Copyright © 2011-2022 走看看