Disable Selectability of a Rectangle Using Fabric.js

Rahul Gurung
Updated on 29-Jun-2022 09:17:14

541 Views

In this article, we are going to learn how to disable selectability of a Rectangle using FabricJS. Rectangle is one of the various shapes provided by FabricJS. In order to create a rectangle, we will have to create an instance of fabric.Rect class and add it to the canvas. In order to modify an object, we have to select it in FabricJS. However, we can change this behaviour by using the selectable property.Syntaxnew fabric.Rect{ selectable: Boolean }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, properties such as colour, cursor, ... Read More

Disable Centered Scaling of Rectangle in FabricJS

Rahul Gurung
Updated on 29-Jun-2022 08:54:06

270 Views

In this tutorial, we are going to learn how to disable the centered scaling of Rectangle using FabricJS. Rectangle is one of the various shapes provided by FabricJS. In order to create a rectangle, we will have to create an instance of fabric.Rect class and add it to the canvas. When being scaled via controls, assigning a true value to the centeredScaling property, uses the center as the object's origin of transformation.Syntaxnew fabric.Rect({ centeredScaling: Boolean }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, properties such as colour, cursor, stroke ... Read More

Disable Centered Rotation of Rectangle Using Fabric.js

Rahul Gurung
Updated on 29-Jun-2022 08:47:15

498 Views

In this tutorial, we are going to learn how to disable the centered rotation of Rectangle using FabricJS. Rectangle is one of the various shapes provided by FabricJS. In order to create a rectangle, we will have to create an instance of fabric.Rect class and add it to the canvas. By default, all objects in FabricJS use their center as the point of rotation. However, we can change this behaviour by using the centeredRotation property.Syntaxnew fabric.Rect({ centeredRotation: Boolean }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, properties such as ... Read More

Create Rectangle with Wait Cursor on Hover using Fabric.js

Rahul Gurung
Updated on 29-Jun-2022 08:42:03

188 Views

In this tutorial, we are going to create a Rectangle with a wait cursor on hover over objects using FabricJS. wait is one of the native cursorstyles available which can be used in the FabricJS canvas too. FabricJS provides various types of cursors like default, all-scroll, crosshair, col-resize, row-resize, etc., that reuse the native cursor under the hood. The hoverCursor property sets the style of the cursor when hovered over a canvas object.Syntaxnew fabric.Rect({ hoverCursor: String }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter colour, cursor, stroke width and ... Read More

Create Rectangle with Text Cursor on Hover Using Fabric.js

Rahul Gurung
Updated on 29-Jun-2022 08:33:56

837 Views

In this tutorial, we are going to create a Rectangle with a text cursor on hover over objects using FabricJS. text is one of the native cursor styles available which can be used in the FabricJS canvas too. FabricJS provides various types of cursors like default, all-scroll, crosshair, col-resize, row-resize, etc., that reuse the native cursor under the hood. The hoverCursor property sets the style of the cursor when hovered over a canvas object.Syntaxnew fabric.Rect({ hoverCursor: String }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, properties such as colour, ... Read More

Create Rectangle with Not-Allowed Cursor on Hover Using Fabric.js

Rahul Gurung
Updated on 29-Jun-2022 08:12:59

153 Views

In this tutorial, we are going to create a Rectangle with a not-allowed cursor on hover over objects using FabricJS. not-allowed is one of the native cursor styles available which can be used in the FabricJS canvas too. FabricJS provides various types of cursors like default, all-scroll, crosshair, col-resize, row-resize, etc., that actually reuse the native cursor under the hood. The hoverCursor property sets the style of the cursor when hovered over a canvas object.Syntaxnew fabric.Rect({ hoverCursor: String }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, properties such as ... Read More

Create Rectangle on Hover using Fabric.js

Rahul Gurung
Updated on 28-Jun-2022 13:57:26

182 Views

In this tutorial, we are going to create a Rectangle with a help cursor on hover over objects using FabricJS. "help" is one of the native cursor styles available which can be used in the FabricJS canvas too. FabricJS provides various types of cursors such as default, all-scroll, crosshair, col-resize, row-resize, etc., that actually reuse the native cursor under the hood. The hoverCursor property sets the style of the cursor when hovered over a canvas object.Syntaxnew fabric.Rect({ hoverCursor: String }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, properties such ... Read More

Create Rectangle with Crosshair Cursor on Hover Using Fabric.js

Rahul Gurung
Updated on 28-Jun-2022 12:51:07

245 Views

In this tutorial, we are going to create a Rectangle with a crosshair cursor on hover over objects using FabricJS. Crosshair is one of the native cursor styles available which can be used on a FabricJS canvas too. FabricJS provides various types of cursors like default, all-scroll, crosshair, col-resize, row-resize, etc., which reuse the native cursor under the hood. The hoverCursor property sets the style of the cursor when hovered over a canvas object.Syntaxnew fabric.Rect({ hoverCursor: String }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, properties such as colour, ... Read More

Create Rectangle with Border Colour using Fabric.js

Rahul Gurung
Updated on 28-Jun-2022 12:42:09

353 Views

In this tutorial, we are going to create a Rectangle with border colour using FabricJS. Rectangle is one of the various shapes provided by FabricJS. In order to create a rectangle, we will have to create an instance of fabric.Rect class and add it to the canvas.Since FabricJS is extremely flexible, we are allowed to customize our rectangle object in any way we like. One of the properties that FabricJS provides is borderColor which allows us to manipulate the colour of the border when our object is active.Syntaxnew fabric.Rect({ borderColor: String }: Object)ParametersOptions (optional) − This parameter is an Object ... Read More

Create Rectangle with Background Colour using Fabric.js

Rahul Gurung
Updated on 28-Jun-2022 12:38:09

497 Views

In this tutorial, we are going to create a Rectangle with background colour using FabricJs. Rectangle is one of the various shapes provided by FabricJS. In order to create a rectangle, we will have to create an instance of fabric.Rect class and add it to the canvas.The backgroundColor property allows us to assign a colour to our object’s background. It is the colour of the container where the rectangle lives and is rectangular in shape for the rectangle.Syntaxnew fabric.Rect({ backgroundColor: String }: Object)ParametersOptions (optional) − This parameter is an Object which provides additional customizations to our rectangle. Using this parameter, ... Read More

Advertisements