在 ASPX 页面中,我们有以下代码,一切正常,但动画 gif "arrows64.gif" 在 IE 浏览器中没有动画,看起来像冻结,需要知道解决方法吗?
在页面加载中我正在调用耗时的数据库调用,同时我想显示这个繁忙的图像,但它在 IE 中冻结,
<div id="divLoading" runat="server" style="text-align: center">
<div style="z-index: 1000; border: medium none; margin: 0pt; padding: 0pt; width: 100%;
height: 100%; top: 0pt; left: 0pt; background-color: rgb(0, 0, 0); opacity: 0.6;
cursor: wait; position: fixed;">
</div>
<div style="z-index: 1001; position: fixed; padding: 0px; margin: 0px; width: 30%;
top: 40%; left: 35%; text-align: center; color: rgb(0, 0, 0); border: 3px solid rgb(170, 170, 170);
background-color: rgb(255, 255, 255); cursor: wait;">
<img src="Images/arrows64.gif" width="64" height="64" alt="Loading..." />
<h1>
Please wait...</h1>
</div>
</div>