jQuery 启动画面

发布于 2024-11-15 13:50:09 字数 547 浏览 2 评论 0原文

我正在尝试创建一个 jquery 启动画面,我在这里找到了一个完美的教程: http://tutorialzine.com/2010/11/apple-style-splash-screen-jquery/ 但需要一些修改脚本的帮助。

目前,如果您在此处查看:http://demo.tutorialzine .com/2010/11/apple-style-splash-screen-jquery/ 苹果图像上方的文本图像发生变化,但我想添加几个图像,这些图像一个接一个地淡出,但也保留在屏幕上,与教程中的当前脚本不同,它会淡入一张图像并淡出,我想淡入图像#1,等待 2 秒淡入图像#2,依此类推,但将每个图像保留在屏幕上。

感谢所有帮助。

I'm trying to create a jquery splash screen, I've found a perfect tutorial here: http://tutorialzine.com/2010/11/apple-style-splash-screen-jquery/ but need some help on modifying the script.

Currently if you view it here: http://demo.tutorialzine.com/2010/11/apple-style-splash-screen-jquery/ the text images above the apple image change but I would like to add several images that fade in one after the other but also remain on the screen, unlike the current script in the tutorial it fades in one image and fades out i would like to fade in image#1 wait 2 sec fade in img #2 and so on but keeping each image on the screen.

All help is appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一口甜 2024-11-22 13:50:09
$('#foo').slideUp(300).delay(800).fadeIn(400);

一个小帮助

http://api.jquery.com/delay/

$('#foo').slideUp(300).delay(800).fadeIn(400);

A small help

http://api.jquery.com/delay/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文