Ciao a tutti
In un mio post precedente chiedevo come applicare un effetto di transizione
in un slide show...
Ho fatto slideshow con "SlideshowExtender" e funziona .... ma utilizzando
"UpdatePanelAnimationExtender1" l'animazione non funziona, e non riesco a
capire l'inghippo!
Qualcuno mi sa aiutare?
<div id="pippo">
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Image ID="Image1" runat="server" Height="149px" Width="303px" />
<cc1:SlideShowExtender ID="SlideShowExtender1" AutoPlay="true"
ImageDescriptionLabelID="lblImageDescription"
Loop="true" SlideShowServiceMethod="GetSlides" TargetControlID="Image1"
runat="server"
UseContextKey="true">
</cc1:SlideShowExtender>
</ContentTemplate>
</asp:UpdatePanel>
</div>
<cc1:UpdatePanelAnimationExtender ID="UpdatePanelAnimationExtender1"
runat="server" TargetControlID="UpdatePanel1">
<Animations>
<OnUpdating>
<FadeOut AnimationTarget="Pippo" Duration="2" Fps="20"/>
</OnUpdating>
<OnUpdated>
<FadeIn AnimationTarget="Pippo" Duration="2" Fps="20"/>
</OnUpdated>
</Animations>
</cc1:UpdatePanelAnimationExtender>
Ciao e grazie