想知道为什么当我在文本上时矩形的颜色会发生变化。我希望背景颜色始终与矩形中的颜色相同。
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"
});
});
谢谢