防止图像闪烁

时间:2013-12-12 10:30:07

标签: html asp.net css ajax

图像图标闪烁点击。所以它消失了看起来像闪光灯。如何防止这种情况。我试着淡出&出来,为了实现这一点,但没有运气。任何其他想法。 (使用c#,Chrome)

<table width="100%">
 <tr>
   <asp:ImageButton ID="btnSearch" runat="server" ImageUrl="~/Images/search.png"
    Width="40px" Height="40px" OnClick="btnSearch_Click"/>
   <asp:AnimationExtender runat="server" TargetControlID="btnSearch">
    <Animations>
<OnClick>
 <Sequence>
   <FadeOut Duration="0.3" Fps="30"></FadeOut>
   <FadeIn Duration="0.3" Fps="30"></FadeIn>
 </Sequence>
</OnClick>
    </Animations>
   </asp:AnimationExtender>
  </tr>
</table>

0 个答案:

没有答案
相关问题