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>
  • 相关阅读:
    react-flux的使用(2018/12/16)
    react-redux 的使用*(2018/12/17)
    小程序推送消息(Template)
    小程序富文本照片左右滚动
    前端自动化工具
    拾色器前端工具
    微信小程序 摇一摇
    小程序在线阅读文档
    配置JDK环境变量
    小程序 获取前几名加样式
  • 原文地址:https://www.cnblogs.com/chenjunbiao/p/1760238.html
Copyright © 2011-2022 走看看