First, sorry for my bad English.
I want to modify the stroke of eclipse in Raphael JS. At usual, the stroke always have a color itself when you set up these commands:
var paper = new Raphael(document.getElementById('canvas_container'), 1500, 800); <br/>
var c111 = paper.circle(800, 200, 100);<br/>
c111.attr({fill:"url(images/imagess_0000_Shape-2.png)", 'stroke': "#000", 'stroke-width':30}); <br/>
c111.animate({'transform':"s4 1"}, 2000);
};
So, when you run this code, the stroke have the black color. Now, I want to change the stroke/border to a image. It's mean the border/stroke will be a image. Can you help me? or some suggestions?
Thank You.