I\'m trying to accomplish some animation with sets in Raphael, but even though an opacity animation worked, I cannot succeed in moving a set (or even a circle) around the ca
To move a set in Raphael, use:
// move to (100,100) over 1 second theSetNameGoesHere.animate({transform: "t100,100"}, 1000);