AJAX Toolkitを使用して、ASP.NETで単純なパルスアニメーションを実行しようとしています。静的なままであるIEを除いて、他のすべてのブラウザで動作します。IEと互換性を持たせる方法があるかどうか誰か知っていますか?ForceLayoutInIEについて何か読んだのですが、それがパルス用なのかフェード用なのかわかりません。
これがコードです。タイマーを気にしないでください、それは何か他のもののためです。
<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>