页: 1 我想先是2个物体,然后再等4秒钟,然后再犯。 我的法典就是这样:
//Animation In
$( .show ).animate({marginTop : 1px , opacity: 1px },1000).delay(4000);
$( .caption ).animate({opacity : 1px , top : 20px },1000).delay(4000);
//After 4 Second Animation Out
$( .show ).animate({ marginTop : -200px , opacity: 0px },1000);
$( .caption ).animate({opacity : 0px , top : 70px },500,function()
{
fadeInwhipe();// calls This Function
});
这完全适用于<代码>.show类别,但有时是.caption
。 在<代码>之前的速率。 I vetries to set .caption
into a callsback function of .show
to prevent .caption
从早点开始,如:
//Animation In
$( .show ).animate({marginTop : 1px , opacity: 1px },1000).delay(4000);
$( .caption ).animate({opacity : 1px , top : 20px },1000).delay(4000);
//After 4 Second Animation Out
$( .show ).animate({ marginTop : -200px , opacity: 0px },1000 ,function(){
$( .caption ).animate({opacity : 0px , top : 70px },500,function()
{
fadeInwhipe();// calls This Function
});
);
但在这种情况下,在<代码>后,它就算了。 它执行,但我希望一劳永逸地将这两级人同起来。 是否有解决办法? 感谢......