I'd just started using RaphaelGWT and I can't figure out how to use
animation with transform.
I've successfully manage to use translation like:
Attr attr = new Attr();
image.animate(attr.x(x0+dx), ms, "elastic");
Now I'd like to scale an image and I've tried the following w/o
success:
image.animate(attr.scale(fx, fy), 500);
So I've investigate a little bit on SVG and found this:
http://www.w3.org/TR/SVG/animate.html#AnimateTransformElement
butI can't figure out how to pass the transform parameters into the
attr... maybe something like
attr.put("transform", ???)
is there a way to pass the XML parameters?
Looking forward to get a feedback
cheers