更新:
我为jQuery制作了一个可链接的动画效果插件(参见我的)。在自定义效果中,我使用jquery的.animation()效果,它应该将动画放在jquery的内置动画队列中。当我试图链接动画时,它会立即启动自定义的.horizontalBlinds()动画,而不会将它放在jquery的内置动画队列中。我如何让它像所有其他内置的jquery效果一样在队列中等待它的出现呢?
// both effects start at the same time
$(element).fadeIn().horizontalBlinds(4);
我有这样的代码:
var x;
x=jQuery(document);
x.ready(inicializarEventos);
function inicializarEventos()
{
var x;
x=jQuery(".Caja2");
x.hover(entraMouse,saleMouse);
}
function entraMouse()
{
jQuery(this).fadeOut();
}
function saleMouse()
{
jQuery(this).fadeIn();
}
问题是,当我将鼠标移到框上