1

我正在使用 Raphael JS 库,这是我的代码:

 var rectangle = paper.rect(0, 0, 5, 5);                        
    rectangle.attr({opacity: 0});
    // I need here a 5 seconds delay, before starting an animation
    rectangle.animate({opacity: 1}, 2000);

我也试过 rectangle.attr({opacity: 0}).delay(5000);这个:rectangle.attr({opacity: 0}, 5000);,但这些似乎都不起作用。

在执行其他代码之前等待一段时间的最简单方法是什么。如果可能的话,我根本不想使用嵌套函数或 for 循环。

4

1 回答 1

2

使用Raphael.animationAnimation.delay

var anim = Raphael.animation({opacity: 0, opacity: 1}, 1000);
rectangle.animate(anim.delay(5000 /* the delay (ms) */));
于 2012-07-24T08:12:55.310 回答