超时jQuery effect
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了超时jQuery effect相关的知识,希望对你有一定的参考价值。
A small plugin that you can use in the jQuery chain to delay the next in queue. For those using a jQuery library pre 1.4 (v1.4 + has .delay() ).$('.notice').fadeIn().idle(2000).fadeOut('slow');
(function($){ jQuery.fn.idle = function(time) { var o = $(this); o.queue(function() { setTimeout(function() { o.dequeue(); }, time); }); }; })(jQuery);
以上是关于超时jQuery effect的主要内容,如果未能解决你的问题,请参考以下文章
TP5报如下的错误 Indirect modification of overloaded element of thinkpaginatorCollection has no effect(代码片段