gpt4 book ai didi

javascript - Html 预加载器 - 延迟页面加载

转载 作者:搜寻专家 更新时间:2023-11-01 04:50:16 24 4
gpt4 key购买 nike

我的新模板需要一些帮助 :)。在网页加载之前,我想展示一个预加载器 gif。我做到了,但是它只显示了一点,因为页面加载速度非常快。所以我想在不影响预加载器的情况下延迟页面(例如 2 秒),因此它(预加载器)会出现 2 秒,直到页面加载。

这是我的代码(请注意,它不适用于 jsfiddle,因为我无法上传 .gif 文件):jsfiddle.net/hLmxpsnw/

最佳答案

无论出于何种原因,您都希望使用 setTimeout 完成它,这里是代码

jQuery(document).ready(function ($) {
$(window).load(function () {
setTimeout(function(){
$('#preloader').fadeOut('slow', function () {
});
},2000); // set the time here
});
});

jsfiddle http://jsfiddle.net/harshdand/593Lqqnm/2/

关于javascript - Html 预加载器 - 延迟页面加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25219587/

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