Open In App

Fabric.js Itext lockMovementY Property

Last Updated : 29 Jan, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

Fabric.js is a JavaScript library that is used to work with canvas. The canvas Itext is one of the class of fabric.js that is used to create Itext instances. The canvas Itext means the Itext is movable and can be stretched according to requirement.In this article we will be using, lockMovementY property is used to lock the vertical movement in a canvas Itext.

Approach: First import the fabric.js library. After importing the library, create a canvas block in the body tag which will contain the Itext . After this, initialize an instance of Canvas and Itext class provided by Fabric.JS and use the lockMovementY property is used to lock the vertical movement.

Syntax:

fabric.Itext(Itext, {
    lockMovementY: boolean
});

Parameters: This function takes a single parameter as mentioned above and described below:

  • lockMovementY: This parameter takes a boolean value to lock the vertical movement .

Example: This example uses FabricJS to set the lockMovementY property of the canvas Itext as shown in the below example:

HTML




<!DOCTYPE html>
<html>
  
<head>
  
    <!-- FabricJS CDN -->
    <script src=
    </script>
</head>
  
<body>
    <div style="text-align: center;width: 400px;">
        <h1 style="color: green;">
            GeeksforGeeks
        </h1>
  
        <b
            Fabric.js | Itext lockMovementY Property 
        </b>
    </div>
  
    <div style="text-align: center;">
        <canvas id="canvas" width="400" height="200"
            style="border:1px solid green;"
        </canvas>
    </div>
  
    <script>
        var canvas = new fabric.Canvas("canvas");
  
        var geek = new fabric.IText('GeeksforGeeks', {
            lockMovementY: true
        });
          
        console.log(geek.willDrawShadow())
        canvas.add(geek);
        canvas.centerObject(geek);
    </script>
</body>
  
</html>


Output:



Similar Reads

Fabric.js | Ellipse lockMovementY Property
In this article, we are going to see how to lock the vertical movement of the canvas ellipse using FabricJS. The canvas means ellipse is movable and can be stretched according to requirement. Further, the ellipse can be customized when it comes to initial stroke color, fill color, stroke width, or radius. Approach: To make it possible, we are going
2 min read
Fabric.js | Rect lockMovementY Property
In this article, we are going to see how to lock the vertical movement of the canvas rectangle using FabricJS. The canvas rectangle means rectangle is movable and can be stretched according to requirement. Further, the rectangle can be customized when it comes to initial stroke color, height, width, fill color, or stroke width. To make it possible,
2 min read
Fabric.js | Triangle lockMovementY Property
In this article, we are going to see how to lock the vertical movement of the canvas triangle using FabricJS. The canvas triangle means the triangle is movable and can be stretched according to requirement. Further, the triangle can be customized when it comes to initial stroke color, height, width, fill color, or stroke width. To make it possible
2 min read
Fabric.js Polygon lockMovementY Property
In this article, we are going to see how to lock the vertical movement of the canvas polygon using FabricJS. The canvas polygon means the polygon is movable and can be stretched according to requirement. Further, the polygon can be customized when it comes to initial stroke color, height, width, fill color, or stroke width. To make it possible we a
2 min read
Fabric.js Image lockMovementY Property
Fabric.js is a JavaScript library that is used to work with canvas. The canvas image is one of the class of fabric.js that is used to create image instances. The canvas image means the Image is movable and can be stretched according to requirement. The lockMovementY property of the image is used to enable or disable the movement of the image along
2 min read
Fabric.js Textbox lockMovementY Property
In this article, we are going to see how to lock the vertical movement of the canvas Textbox using lockMovementY property in FabricJS. The canvas means Textbox is movable and can be stretched according to requirement. Further, the Textbox can be customized when it comes to initial stroke color, fill color, stroke width, or radius. Approach: To make
2 min read
Fabric.js Polyline lockMovementY Property
In this article, we are going to see how to lock the vertical movement of the canvas Polyline using FabricJS. The canvas Polyline means the Polyline is movable and can be stretched according to requirement. Further, the Polyline can be customized when it comes to initial stroke color, height, width, fill color, or stroke width. To make it possible
2 min read
Fabric.js line lockMovementY Property
In this article, we are going to see if the option set to true will lock the vertical movement in a canvas line in FabricJS. The canvas line means the line is movable and can be stretched according to requirement. Further, the line can be customized when it comes to initial stroke color, height, width, fill color, or stroke width. Syntax: fabric.li
2 min read
Fabric.js Path lockMovementY Property
In this article, we are going to see how to set the lockMovementY of a Path using Fabric.js. The Path in Fabric.js is movable and can be stretched according to requirements. Further, the Path can be customized when it comes to initial stroke color, height, width, fill color, or stroke width. To make it possible we are going to use a JavaScript libr
2 min read
Fabric.js Group lockMovementY Property
The following article covers how to set the lockMovementY of a Group of the canvas using Fabric.js. The Group in Fabric.js is movable and can be stretched according to requirements. Further, the Group can be customized when it comes to initial stroke color, height, width, fill color, or stroke width. To make it possible we are going to use a JavaSc
2 min read