大きな円をクリックすると、クラス名を使用して小さな円を見つけ、小さな円をアニメーション化しようとしていますが、まったく機能しません。
しかし、fadeId、fadeOut プロパティは機能しています。
私の機能:
var paper = new Raphael('myPaper',500,500);
var circle = paper.circle(100,100,100).attr({'fill':'red'});
circle.node.setAttribute('class','red');
var text = paper.text(100,100,"test Text").attr({'fill':'#fff'});
var smallCircle = paper.circle(300,100,50).attr({'fill':'green'}).data('id','green');
smallCircle.node.setAttribute('class','green');
var newSet = paper.set();
newSet.push(circle,text);
newSet.attr({cursor:'pointer'}).data('id','oval');
$('.red').on('click',function () {
$('.green').animate({'cx':200},5000); //animation not working.
} )
</p>