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>
  • 相关阅读:
    python,可变参数
    python process,queue
    python 进程池Pool
    python 中的set与list,tuple
    python 元组tuple
    深夜装ubuntu
    python中的协程
    python Queue在两个地方
    (转载)Spring mvc中@RequestMapping 6个基本用法小结
    数据库jdbc连接--【DRP】
  • 原文地址:https://www.cnblogs.com/chenjunbiao/p/1760238.html
Copyright © 2011-2022 走看看