gpt4 book ai didi

jquery - 在页面加载之前缓慢显示图像

转载 作者:行者123 更新时间:2023-12-01 03:39:17 26 4
gpt4 key购买 nike

我怎样才能有这样的预加载器website
我的意思是图像显示缓慢。
但是
我想通过 windows.load 实现此目的?
任何想法 ?谢谢

更新

 function initSplash(){
var block = $("#splashLogoBlock");
var active = 0;
var pause = 300;
var timer = 500;
var count = 11;
var idTimeout;

for(var i=1; i< count + 1; i++){
$('<div class="splashLogoShower shower' + i + '"></div>').insertBefore($(".splashLogo"));
}

它使用了这个js。

最佳答案

首先,这不是预加载数据,这只是动画。

你可以制作一些 jQuery 动画:

$(element).animate({height: "20px"}, 500, function() {
//this code will run after animation complete
console.log('animation comlpeted');

//or even redirect if you want
window.location.href = "http://stackoverflow.com";
});

更多详情请查看jQuery animate() documentation

---更新---

以下是适合您的具体示例:http://jsfiddle.net/zur4ik/7R4Sq/

--- 更新 2 ---

具有相同页面加载器的另一个示例:http://jsfiddle.net/zur4ik/7R4Sq/2/

关于jquery - 在页面加载之前缓慢显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24844822/

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