显示“正在加载”图像直到在“图像库应用程序”中加载原始图像; - 地铁风格

发布于 2025-01-05 21:00:50 字数 230 浏览 0 评论 0原文

我正在开发一个图像库应用程序..

它从互联网加载图像..

我正在做的是将图像url收集到一个数组中并将其绑定到一个列表视图中..

它工作正常..但我的问题是图像显示十字标记(“X”)直到加载图像。

我期望的是

  1. 为每个图像显示一个加载图像,直到加载原始图像

  2. 如果1不可能,我怎样才能删除十字标记?

I am developing an image gallery application ..

Its loading images from the internet..

What i am doing is collecting image url into an array and bind it into a list view ..

Its works fine.. But my problem is the images shows a cross mark ( 'X') till loading the images.

What i am expecting is

  1. Display a loading image for each emage untill loads the original image

  2. if 1 is not possible, how can i remove the cross mark?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

走走停停 2025-01-12 21:00:50

一种方法是将 src 设置为 1x1 像素的透明 gif,将尺寸设置为最终图像大小,将背景图像设置为加载图像,然后使用 JavaScript 加载图像,并 onload 交换将其插入占位符 gif

示例

HTML

<img src="images/spacer.gif" alt="Big Image" border="0" id="big_image" style="background-image:url('loading.gif');" width="3396" height="2347" />

JS

var I = new Image();
I.onload = function () {
    document.getElementById('big_image').src = I.src;
};
I.src = 'http://apod.nasa.gov/apod/image/0911/ngc2623_hst_big.jpg';

One approach is to set the src to a 1x1 pixel transparent gif, set the dimensions to the final image size, the background image to a loading image, and then use JavaScript to load the image, and onload swap it into the placeholder gif

example

HTML

<img src="images/spacer.gif" alt="Big Image" border="0" id="big_image" style="background-image:url('loading.gif');" width="3396" height="2347" />

JS

var I = new Image();
I.onload = function () {
    document.getElementById('big_image').src = I.src;
};
I.src = 'http://apod.nasa.gov/apod/image/0911/ngc2623_hst_big.jpg';
墟烟 2025-01-12 21:00:50

您无法删除“X”标记,因为这是浏览器特定的功能。但是,您可以将图像设置为具有加载图像的背景图像。

简单的例子:

<img src="" style="background-image: url(loadingimage.gif)" />

这样,您的加载程序就会显示出来,并在加载完整图像时被屏蔽。

You cannot remove the 'X' mark as that is a browser-specific feature. You could, however, set your images to have a background image of your loading image.

simple example:

<img src="" style="background-image: url(loadingimage.gif)" />

This way, your loader shows up and is masked when the full image loads.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文