使用 jquery 复制 bing 图像主页效果(淡入,然后淡出)

发布于 2024-10-12 08:18:27 字数 428 浏览 4 评论 0原文

因此,我希望能够复制 bing.com 上看到的效果。当你第一次去那里时,它会加载图像背景,并在一堆看似随机的框中淡出,这些框在图像上淡入。然后,这些框会淡出,表明它们已隐藏,但会向您提供有关其位置的初步指示。

我正在使用 jquery 进行初始淡入,但我想将其延迟一段设定的时间,然后让它淡出。其余的效果是通过 css3 过渡完成的。

这是我现在正在使用的:


<script type="text/javascript">
    $(document).ready(function () {
        $('.floatBtn').hide().fadeIn(1000);
    });

</script>



任何建议和帮助将不胜感激!

So, I want to be able to replicate the effect seen on bing.com. When you first go there, it loads an image background, and it fades in a bunch of seemingly random boxes that fade in over the image. The boxes THEN fade back out, indicating that they are hidden, but giving you an initial indication as to their location.

I am using jquery to do the initial fadeIn, but I want to delay it for a set time, then have it fadeOut. The rest of the effects are done with css3 transitions.

Here's what I'm using right now:

<script type="text/javascript">
    $(document).ready(function () {
        $('.floatBtn').hide().fadeIn(1000);
    });

</script>

Any advice and help would be appreciated!

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

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

发布评论

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

评论(1

一袭水袖舞倾城 2024-10-19 08:18:27

您可以在函数调用之间使用 .delay() 来做到这一点。 (延迟一段时间。)

所以使用 $(document).ready(function () { $('.floatBtn').hide().fadeIn(1000).delay(5000).fadeOut( 1000); });

You can use .delay() between function calls to do exactly that. (delay it by an ammount of time.)

So use $(document).ready(function () { $('.floatBtn').hide().fadeIn(1000).delay(5000).fadeOut(1000); });

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