user1807367
user1807367

Reputation:

Mindmapping example with KineticJS

I want to create a mapper (like mindmapping) with KineticJS and JQuery. But I didn't find how to begin with KineticJS. Actually, I only need some example to draw a box (some shape) in the middle of the page with just one arrow.

Any help will be appreciated.

Upvotes: 0

Views: 367

Answers (1)

Xavier Haennig
Xavier Haennig

Reputation: 308

You can do arrows with paths : http://www.html5canvastutorials.com/kineticjs/html5-canvas-kineticjs-path-tutorial/

You can also do that with polygons : http://www.html5canvastutorials.com/kineticjs/html5-canvas-kineticjs-polygon-tutorial/

And to draw a box, you simply have to draw a rect : http://www.html5canvastutorials.com/kineticjs/html5-canvas-kineticjs-rect-tutorial/

The KineticJS documentation and tutorials are very simple to use.

Hope it will help.

Upvotes: 1

Related Questions