In this tutorial, we are going to learn how to add a shadow to a Triangle using FabricJS. Triangle is one of the various shapes provided by FabricJS. In order to create a triangle, we will have to create an instance of fabric.Triangle class and add it to the canvas.Our triangle object can be customized in various ways like changing its dimensions, adding a background color or even adding a shadow to it. We can add a shadow to the triangle by using the shadow property.Syntaxnew fabric.Triangle({ shadow : fabric.Shadow }: Object)ParametersOptions (optional) − This parameter is an Object which provides ... Read More
Organizational behavior is the study of human behavior and interaction within an organization and with other organizations. Organizational behavior is related to individuals, as well as group of people working together in teams. The concepts and principles of organizational behavior are mostly used to improve the efficiency of businesses.Types of Organizational BehaviorVarious types of organizational behavior are as follows −Autocratic ModelCustodial ModelSupportive ModelCollegial ModelSystem ModelAutocratic ModelAutocratic model is the model that is contingent upon strength, ability and legal authority. In an autocratic organization, the owners who manage the tasks in an organization have legal authority to manage the employees who ... Read More
In this tutorial, we are going to learn how to add a dashed stroke to a Triangle using FabricJS. Triangle is one of the various shapes provided by FabricJS. In order to create a Triangle, we will have to create an instance of fabric.Triangle class and add it to the canvas. The strokeDashArray property allows us to specify a dash pattern for the object's stroke.Syntaxnew fabric.Triangle( { strokeDashArray: Array }: Object)Parametersoptions (optional) − This parameter is an Object which provides additional customizations to our triangle. Using this parameter, properties such as colour, cursor, stroke width, and a lot of other properties can ... Read More
What is Organizational Behavior?Organizational behavior is the study of human behavior and interaction within an organization and with other organizations. Organizational behavior is related to individuals, as well as group of people working together in teams. The concepts and principles of organizational behavior are mostly used to improve the efficiency of businesses.The study of organizational behavior includes areas of investigation dedicated toward improvement of job production, increase in job fulfilment, promotion of innovation, and inspiring leadership keeping the foundation of corporate human resources. Each of these has its own endorse actions, such as restructure groups, adapt compensation structures, or changing ... Read More
In this tutorial, we are going to learn how to lock the vertical movement of a Rectangle using FabricJS. Just as we can specify the position, colour, opacity and dimension of a rectangle object in the canvas, we can also specify whether we want it to move only in the X-axis. This can be done by using the lockMovementY property.Syntaxnew fabric.Rect({ lockMovementY: 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 width and a lot of other properties can be changed related to ... Read More
In this tutorial, we are going to create a rectangle with a dash pattern border 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.We can change the appearance of the dashes of border, by using the borderDashArray property. However, our rectangle object must have borders in order for this property to work. If the hasBorders property is assigned a False value, this property will not work.Syntaxnew fabric.Rect({ borderDashArray: Array }: Object)Parametersoptions (optional) − This parameter ... Read More
In this tutorial, we will be discussing how to create a currency converter in JavaScript. We will be discussing the various steps involved in creating such a converter.What is a currency converter?A currency converter is a tool that helps you convert one currency to another. For example, if you are from the United States and you are traveling to Europe, you will need to use a currency converter to convert your US dollars into Euros.Why use JavaScript to create a currency converter?JavaScript is a versatile programming language that can be used to create a wide variety of applications, including web-based ... Read More
In JavaScript, an object-like value is a value that is not a primitive value and is not undefined. An object-like value is any value that is not a primitive value, including functions, arrays, and objects. There are different methods for checking if a value is objectlike in JavaScript. In this article, we are going to look at 3 methods for checking if a value is object-like in JavaScript.Using the typeof OperatorThe typeof operator is a built-in operator in JavaScript that is used to check the type of a value. The typeof operator returns a string that is the type of ... Read More
A moving div is a web page element that can be caused to move across the screen, or change position on the screen, automatically. The position is changed by adjusting the left and top style properties. Creating a moving div using JavaScript is a relatively simple task. All that is required is a little bit of HTML, CSS, and JavaScript code. In this tutorial, we will go over how to create a moving div using JavaScript.HTML CodeThe first thing we need is some HTML code. We will create a div with an id of "movingDiv". Inside of this div, we ... Read More
In JavaScript, objects can be created to store data as key-value pairs. The data in an object can be accessed using the dot notation (obj.key) or the bracket notation (obj["key"]). See the below example −let obj = { key1: "value1", key2: "value2", key3: "value" };We can remove the key-value pairs corresponding to the given keys from an object but in this tutorial, we are going to look at 3 methods.Using the delete operatorThe delete operator is used to delete a property of an object. The delete operator will not delete the variable itself, but only the value of the variable.ExampleSee ... Read More