javascript - Is path animation possible with SVG.js -


there many examples of svg path animation, both natively

http://jsfiddle.net/fvqdq/

and raphael.js

http://jsfiddle.net/d7d3z/1/

p.animate({path:"m140 100 l190 60"}, 2000, function() {     r.animate({path:"m190 60 l 210 90"}, 2000); }); 

how possible svg.js library?

no, not yet possible svg.js. have been looking , rather large implementation. try keep library small never part of library itself, might write plugin. although @ moment not have time on hands appreciated.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -