gpt4 book ai didi

jquery - 如何确定只有可见图像下载完成并在页面中呈现

转载 作者:行者123 更新时间:2023-12-01 01:37:53 25 4
gpt4 key购买 nike

这是我可以实现图像延迟加载功能的代码。我需要知道何时只有可见图像下载完成并在页面中呈现。这将如何成为可能。

这是我的代码

$(document).ready(function () {
$("table[id*=dgImages] img").each(function () {
if($(this).offset().top > $(window).scrollTop() && $(this).offset().top < $(window).scrollTop() + $(window).height()) {

// callback on load complete
this.onload = function() {
alert('this image download complete');
$(this).fadeIn('slow');
}

$(this).attr("src", $(this).attr("original"));
$(this).removeAttr("original");
}
});
});

借助以下代码,我可以确保每个图像下载何时在客户端完成。

this.onload = function() { 
alert('this image download complete');
$(this).fadeIn('slow');
}

所以我需要另一个回调机制,它会触发并通知我只有可见图像下载完成并在页面中呈现。请讨论这个问题如何实现。谢谢

最佳答案

也许this one帮助你

关于jquery - 如何确定只有可见图像下载完成并在页面中呈现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8612898/

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