delay()和fadeOut()不会延迟队列中的attr() [英] delay() and fadeOut() don't delay attr() in the queue

查看:136
本文介绍了delay()和fadeOut()不会延迟队列中的attr()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

此代码有什么问题?我正在尝试获得这种效果:fadeOut(500)attr('class','myClass')延迟了600毫秒.然后再次delay(600)fadeIn(500).延迟正确发生,但attr()未被延迟,当#myDiv仍在消失时会触发! :'(

what is wrong in this code? I'm trying to get this effect: fadeOut(500) and attr('class','myClass') delayed by 600 millisecs.. then delay(600) again, and fadeIn(500). The delays happen correctly but the attr() is not being delayed, it fires when #myDiv is still fading! :'(

$('#myDiv').fadeOut(500)
           .delay(600)
           .attr('class','myClass')
           .delay(600)
           .fadeIn(500);  

推荐答案

.delay() 影响动画或fx队列(除非您专门指定其他队列).请记住,链接和排队是2个截然不同的概念,链接继续使用相同的jquery集,但这完全不同于该集中元素上的任何事件队列.

The .delay() only affects the animation or fx queue (unless you specify a different queue specifically). Keep in mind that chaining and queuing are 2 distinctly different concepts, chaining continues the use of the same jquery set, but that's a different thing entirely than any event queues on elements in that set.

要影响 .attr() 调用,您必须将其添加为该回调使用> .queue() 的相同队列,如下所示:

To have the .attr() call affected, you have to add it as a callback to that same queue using .queue(), like this:

$('#myDiv').fadeOut(500)
           .delay(600)
           .queue(function(next) { $(this).attr('class','myClass'); next(); })
           .delay(600)
           .fadeIn(500); 

还要注意,有 .addClass() .toggleClass() 可用的方法,可能会使其更干净:)

Also note there are .addClass(), .removeClass() and .toggleClass() methods available that may make this a bit cleaner :)

这篇关于delay()和fadeOut()不会延迟队列中的attr()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆