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

Popular posts from this blog

delphi - blogger via idHTTP : error 400 bad request -

c++ - compiler errors when initializing EXPECT_CALL with function which has program_options::variables_map as parameter -

How do I check if an insert was successful with MySQLdb in Python? -