使用 jquery 复制 bing 图像主页效果(淡入,然后淡出)
因此,我希望能够复制 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在函数调用之间使用
.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); });