0

在 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>
4

1 回答 1

0

这可能是您需要翻转的 IE 设置,或者只是缺少对动画 GIF 的支持(取决于版本)。我不会为此而失眠,只是使用不同的图像来明确表示正在加载……这样,即使它没有移动,用户也可以读到它正在发生。

如果这是一个需要翻转的设置,您的用户会因为得知他们需要更改其 IE 配置以使您的网站正常运行而感到恼火。

如果您必须使用此动画 GIF,请阅读此帖子了解可能的解决方法。

于 2012-08-08T17:40:07.210 回答