0
我想在ASP.NET中使用AJAX工具包做一個簡單的脈衝動畫。它適用於除IE之外的所有其他瀏覽器,它只保持靜態。任何人都知道是否有辦法使它與IE兼容?我讀了一些關於ForceLayoutInIE的內容,但不確定這是否適用於脈衝或淡入淡出。AJAX工具包 - AnimationExtender - IE支持
這是代碼。不介意定時器,這是爲了別的。
<asp:UpdatePanel ID="upnlMessage" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:Timer ID="Timer1" runat="server" Interval="10000" OnTick="Timer1_Tick" />
<center>
<asp:Label ID="lblMessage" runat="server" CssClass="feedbackmessage" />
<ajax:AnimationExtender ID="lblMessage_AnimationExtender" runat="server" Enabled="True"
TargetControlID="lblMessage">
<Animations>
<OnLoad>
<Sequence>
<Pulse Duration="0.5" Iterations="0" />
</Sequence>
</OnLoad>
</Animations>
</center>
</ContentTemplate>
</asp:UpdatePanel>