javascript - Animate a "print" element with raphael js -
javascript - Animate a "print" element with raphael js -
i know if possible animate print raphaeljs?
because this:
var text = paper.print(10,10,"text here",font,20).animate({transform:"t100,100"},500); doesn't work @ all...
thanks
raphael's documentation says .print() returns set, need treat such...
var text = paper.print(10,10,"text here",font,20) text.foreach(function(){ this.animate({transform:"t100,100"},500); }) i must tried code , text returns empty array, might have improve luck.
javascript raphael
Comments
Post a Comment