Drawing SVG with Mouse
问题 I having be exploring several options for building an open-source HTML5 based application like Sketch, which will basically be vector based app for creating UI screens etc. I saw several great JS Libraries like http://snapsvg.io, http://paperjs.orgetc... And creating a static SVG element is as simple as below: var s = Snap("#svg"); // Lets create big circle in the middle: var bigCircle = s.circle(150, 150, 100); What I am not having clue about is, binding the job to mouse move event. So if