开发者

Disable "Loading..." mode while preoading images in Opera

开发者 https://www.devze.com 2023-02-11 01:39 出处:网络
There is crossdomain image, which is loaded for 30 seconds (its 1x1 gif, but server returns if after 30s), via image preloading.

There is crossdomain image, which is loaded for 30 seconds (its 1x1 gif, but server returns if after 30s), via image preloading.

window.onload = function () {
   开发者_如何学Python var img = new Image();
    img.onload = function () { alert('Yey!'); };
    img.onerror = function () { alert('Doh!'); };
    img.src = 'http://cross-domain.com/1x1px.gif';
};

All browsers except Opera's do not show "Loading..." mode. Preloading image via Link, Script, Iframe, CSS - same effect.

How to disable "Loading..." mode while preoading images in Opera?

0

精彩评论

暂无评论...
验证码 换一张
取 消