There is no intellisense on the animationextender and all of the tutorials I have found for the last few days don't fully explain things. I've seen some fancy advanced code and I wondered where the programmers found this information because I cannot dig
anything up. :(
That code above almost works. I want it to fade in very quickly, wait 5 seconds, then start its fadeout routine which really needs to last about 10 seconds. I don't like how the above example fades in and immediately starts fading out.
palpacino
Member
32 Points
52 Posts
AnimationExtender - Wait 5 seconds before starting a fadeout?
May 10, 2012 04:06 PM|LINK
There is no intellisense on the animationextender and all of the tutorials I have found for the last few days don't fully explain things. I've seen some fancy advanced code and I wondered where the programmers found this information because I cannot dig anything up. :(
<ajaxToolkit:AnimationExtender ID="FadeInAndOut" runat="server" BehaviorID="AnimationBehavior" TargetControlID="MyPanel"> <Animations> <OnLoad> <Sequence> <Parallel Duration=".5" Fps="20"> <FadeIn Duration=".5" Fps="20" /> </Parallel> <Parallel Duration=".5" Fps="500"> <FadeOut Duration=".8" Fps="20" /> </Parallel> </Sequence> </OnLoad> </Animations> </ajaxToolkit:AnimationExtender>That code above almost works. I want it to fade in very quickly, wait 5 seconds, then start its fadeout routine which really needs to last about 10 seconds. I don't like how the above example fades in and immediately starts fading out.
Any advice? :)
Thanks as always!