
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 224 Articles for Javascript Library

10K+ Views
We can add a stylesheet in Next.js by creating a CSS file in the "pages" directory and importing it in the desired component. We can also use CSS-in-JS libraries like styled-jsx for styling in Next.js. It is important to note that the styles will only be scoped to the component they are imported in and will not affect the global styles. Let us first learn what Next.js is. Next.js is an open-source web development framework. The Next.js is React Based framework with server side rendering capability. Both speed and SEO are excellent. You can simply build and test sophisticated react-based ... Read More

625 Views
We can add a stateful component without using a constructor class by using the useState hook. This hook allows us to create and update state within our component without the need for a constructor. To use this hook, we simply call the useState function and pass in our initial state as an argument. There are primarily two ways of creating React Components − Using JS classes. Using functional components. Before react v16 there was no way of adding state to functional components. But since the inception of React Hooks we can write stateful functional components as well. A ... Read More

4K+ Views
We can add a star rating feature in NextJS by using a library such as react-star-rating. This library allows us to easily display a star rating system and allows for customization of the number of stars and the ability to handle user interactions.Next.js is an open-source web development framework. The Next.js is React Based framework with server side rendering capability. Both speed and SEO are excellent. You can simply build and test sophisticated react-based applications using Next.js. Next.js is written in Typescripts. It offers a Link component that links other components together and has a prefetch property that allows for ... Read More

6K+ Views
We can use conditional rendering to only display the spinner when certain conditions are met, such as when data is being fetched from an API. Additionally, we can use CSS to style the spinner and make it match the overall design of our website. What is NextJS? Next.js is a JavaScript framework for building server-rendered React applications. It provides a set of features and tools that make it easy to build and deploy high-performance web applications, such as automatic code splitting, server-side rendering, and static site generation. Next.js also simplifies the setup process and provides a development environment that allows ... Read More

334 Views
We can add a shadow to a canvas circle using Fabric.js by creating a new circle object, then setting the "shadow" property of the object to an object containing the desired shadow properties such as color and offset. Fabric.js is an open-source JavaScript library that allows developers to create and manipulate HTML5 canvas elements with ease. It simplifies the process of creating, editing and animating canvas elements by providing a set of powerful and flexible APIs. With Fabric.js, developers can create complex canvas graphics, animations, and interactive elements without having to deal with the low-level canvas API. It also provides ... Read More

17K+ Views
We can add a Popup in NextJS by using a library such as react-modal or reactjs-popup. This will allow us to create a modal component that can be easily integrated into our NextJS application. We can also use CSS to style the popup to match the design of our website. Let us first learn what Next.js is. Next.js is an open-source web development framework. The Next.js is React Based framework with server side rendering capability. Both speed and SEO are excellent. You can simply build and test sophisticated react-based applications using Next.js. Next.js is written in Typescripts. It offers a ... Read More

207 Views
We can create a Polyline object by creating an instance of fabric.Polyline. A polyline object can be characterised by a set of connected straight-line segments. Since it is one of the basic elements of FabricJS, we can also easily customize it by applying properties like angle, opacity, etc. For ungrouping grouped Polyline objects we can use the toActiveSelection() method. Syntax toActiveSelection(): fabric.ActiveSelection Example 1: Grouping All the Polylines using One Click Before seeing how to ungroup, let's see how we can group objects. In this example, we will have a button on clicking which all the Polylines will ... Read More

442 Views
We can create a Polyline object by creating an instance of fabric.Polyline. A polyline object can be characterised by a set of connected straight-line segments. Since it is one of the basic elements of FabricJS, we can also easily customize it by applying properties like angle, opacity, etc. For ungrouping multiple Polyline objects we can use the toActiveSelection() method. Syntax toActiveSelection(): fabric.ActiveSelection Example 1: Grouping All the Polylines using One Click Before seeing how to ungroup, let's see how we can group objects. In this example, we will have a button on clicking which all the Polylines will ... Read More

389 Views
A polyline object can be characterised by a set of connected straight-line segments. Since it is one of the basic elements of FabricJS, we can also easily customize it by applying properties like angle, opacity, etc. Serialization means converting the canvas into savable data which can be converted back into the canvas later. This data can be an object or JSON so that it can be stored on servers. We will use the toJSON() method to convert the canvas with Polyline object into JSON. Syntax toJSON(propertiesToInclude: Array): Object Parameters propertiesToInclude − This parameter accepts an Array ... Read More

255 Views
A polyline object can be characterised by a set of connected straight-line segments. Since it is one of the basic elements of FabricJS, we can also easily customize it by applying properties like angle, opacity, etc. We will create a program where pressing a button will randomly generate a Polyline object and add it to our canvas for us. Syntax new fabric.Polyline(points: Array, options: Object) Parameters points − This parameter accepts an Array which denotes the array of points that make up the polyline object. options (optional) − This parameter is an Object which provides ... Read More