gpt4 book ai didi

javascript - HTML 隐藏图像 - 在显示之前如何下载并调整大小?

转载 作者:行者123 更新时间:2023-11-28 20:42:01 25 4
gpt4 key购买 nike

Possible Duplicate:
JavaScript Preloading Images

我在页面加载后一段时间使用 JS 设置 img.hidden=false 。这会导致图像下载并调整 img 元素的大小 - 我想避免这种情况(我使用内联样式 width:2em 来调整图像大小)。其次,当我更改 img 源时,第二个图像的下载会出现轻微的延迟。

如何在页面上显示图像之前下载它们...?

最佳答案

先下载图片,然后触发action,用jquery这样:

  var i = document.createElement('img'); // or new Image()
// may be you need to set the element id...
i.id = 'your id';
// here handle on load event
$(i).load(function() {

// finally the new image is loaded, you can trigger your action
$('#container').append($(this));

});
// This is the last step, set the url and start the image download.
i.src = 'http://www.hostname.com/yourimage.jpg';

关于javascript - HTML 隐藏图像 - 在显示之前如何下载并调整大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14218098/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com