テキスト上にいるときに長方形の色が変わる理由を知りたいです。背景色が常に長方形の色と同じであることを望みます。
paper = new Raphael(document.getElementById('canvas_container'), 500, 250);
rectangle2 = paper.rect(130, 75, 140,40,15);
texte = paper.text(200, 90, "Tarification et souscription\nweb")
rectangle2.mouseover(function(){
this.animate({
fill : "#aaa"
});
});
rectangle2.mouseout(function(){
this.animate({
fill : "#F90"
});
});
ありがとう