gpt4 book ai didi

jquery - 延迟加载 gif 图片

转载 作者:太空宇宙 更新时间:2023-11-03 18:33:01 24 4
gpt4 key购买 nike

在我的网页完全加载之前,我正在显示一个 gif 加载图像。它工作正常,但当我刷新我的网页时,它加载速度非常快,但 gif 图像会立即显示。

有没有办法让 gif 图像在页面请求发出后仅 2 秒出现?

最佳答案

你可以创建一个 2 秒后触发的超时

var myLoadingTimer = setTimeout(function(){
$('#thegifimage').show(); // show the image
},2000);

并在页面加载时取消这个

$(document).ready(function() {
clearTimeout(myLoadingTimer); // clearing the timer
$('#thegifimage').show(); // hiding image tho
});

尽管如此,当页面在 2010 毫秒后加载时,图像总是会显示 ;)

关于jquery - 延迟加载 gif 图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19395217/

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