-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
FAQ
kangax edited this page Jun 1, 2011
·
32 revisions
canvas.getObjects()
returns an array of all objects on canvas.
canvas.item(n)
returns n-th object on canvas (where indexing is associated with z-order)
canvas.getObjects(); // [...]
canvas.item(0); // first item
canvas.item(1); // second item
Using fabric.Object#set
method.
rect.set('width', 100).set('height', 50);
// or
rect.set({ width: 100, height: 50 })
Using "backgroundColor" property of fabric.Element
instance. E.g.: canvas.backgroundColor = 'red'
or canvas.backgroundColor = rgba(0, 255, 0, 0.5)