Found 198 Articles for React JS

Creating an Excel-like data grid in React JS

Ath Tripathi
Updated on 29-Sep-2021 07:34:58

778 Views

In this article, we will see how to create an Excel-like data grid in React JS frontend. We will use a third-party package for this, which is called react-data-grid. This is a useful package if you are working with data and want to make a dashboard application.First create a react project −npx create-react-app tutorialpurposeGo to the project directory −cd tutorialpurpose ExampleDownload and install the react-data-grid package −npm i --save react-data-gridWe can use this package to add default styled grid tables or you can say data grids which are premade.Add the following lines of code in App.js −import DataGrid from "react-data-grid"; ... Read More

Building an animated loader in React.JS

Ath Tripathi
Updated on 28-Sep-2021 13:02:08

699 Views

In this article, we will see how to make an animated loader in React.js. Animated loaders are used in many websites to enhance the look and feel. In React.js, we can use the react-spinkit package to create beautiful animated loaders easily without having to write hundreds of lines of CSS.First create a React project −npx create-react-app tutorialpurposeGo to the project directory −cd tutorialpurposeExampleInstall the react-spinkit package −npm i --save react-spinkitThis library provides premade loaders and it is really easy to add it in your project. Using spinner, you can add any animated loader in React.Add the following lines of code ... Read More

Adding OrbitControls in React using reactthree-fiber

Ath Tripathi
Updated on 28-Sep-2021 12:53:22

2K+ Views

In this article, we will see how to add OrbitControls in React using react-three-fiber. It is like making a camera; we can move on screen and view each side of any 3D object. We can use OrbitControl to provide zoom and sliding effects too. So, let's get started.ExampleInstall the react-three/fiber library −npm i --save @react-three/fiber threethreejs and react-three/fiber will be used to add webGL renderer to the website. three-fiber will be used to connect threejs and react.First create an orbital control object in App.js −import React, { useEffect } from "react"; import { Canvas, useThree } from "@react-three/fiber"; import { OrbitControls ... Read More

Making a wobbling cube in React using react-three-fiber

Ath Tripathi
Updated on 28-Sep-2021 12:44:41

430 Views

In this article, we will see how to make a wobbling cube in React, which will be wobbling in a loop and spinning at same time. We will first make a cube and then add the wobbling effect. We can also add a feature to make the cube wobble on hovering. So, let's get started.ExampleFirst download the react-three-fiber package −npm i --save @react-three/fiber npm i --save @react-three/drei npm i --save threethreejs and react-three/fiber will be used to add webGL renderer to the website. react-three/fiber will be used to connect threejs and React. drei is used to add wobblingMesh.Add the following ... Read More

Making a timer in React JS using reactspring animation

Ath Tripathi
Updated on 28-Sep-2021 12:39:36

480 Views

In this article, we will see how to create a timer in React using react-spring animation. Spring animation is a new type of method which is used to add animation in a different way. It is a more precise and modern way to add animation in React.js. Using react-spring, we can create effects like fade-in, fade-out, bounce, etc.First create a React project −npx create-react-app firstprojectNow go to the project directory −cd firstprojectExampleInstall the react-spring package −npm install react-springreact-spring is used to add spring concept based animations to our website. We can use this library to add different type of animations.Let ... Read More

Making a tilt-on-hover effect in React JS without CSS

Ath Tripathi
Updated on 28-Sep-2021 12:30:02

373 Views

In this article, we will see how to add a tilt-on-hover effect in React.js without using CSS. We are going to add tilt animation effect on the element. This type of effect can immediately attract user's attention, as it will tilt a specific part on hovering while keeping the other elements at their original place.ExampleFirst download the react-parallax-tilt package −npm i --save react-parallax-tiltThis library is used to import the container which will add tilt effect to any element.Add the following lines of code in App.js −import Tilt from "react-parallax-tilt"; function App() {    return (     ... Read More

How to make a resizable element in React JS

Ath Tripathi
Updated on 28-Sep-2021 12:27:09

4K+ Views

In this article, we will see how to make a resizable element in React JS. We always create resizable textarea in HTML, but when it comes to creating other elements resizable, it seems impossible. In React, we can create resizable elements easily using a simple library.ExampleFirst install the following package −npm install --save re-resizablere-resizable is used to import a resizable container which will be used to add Resizable functionality to any DOM element.Add the following lines of code in App.js −import React, { useState } from "react"; import { Resizable } from "re-resizable"; export default function App() {    const ... Read More

Creating a parallax scrolling effect in React using react-spring.mp4

Ath Tripathi
Updated on 28-Sep-2021 12:24:22

1K+ Views

In this article, we will see how to make the popular parallax effect in React.js using react-spring animation library. Parallax is a displacement or difference in the apparent position of an object viewed along two different lines of sight, and is measured by the angle of inclination between those two lines. Parallax scrolling is an effect where the background content moves at a different speed than the foreground content. So, let's get started.First create a React project −npx create-react-app tutorialpurposeGo to the project directory −cd tutorialpurposeExampleInstall the following packages −npm install react-spring npm i --save @react-spring/parallaxreact-spring is used to add ... Read More

How to make a cylinder in React using reactthree-fiber

Ath Tripathi
Updated on 28-Sep-2021 12:14:47

1K+ Views

In this article, we will see how to create a basic cylinder-like shape in React using react-three-fiber. Three.js is a cross-browser JavaScript library and application programming interface used to create and display animated 3D computer graphics in a web browser using WebGL.ExampleFirst download the react-three-fiber package −npm i --save @react-three/fiber threethreejs and react-three/fiber will be used to add webGL renderer to the website. Three-fiber will be used to connect threejs and React.Add the following lines of code in App.js −import React, { useEffect, useRef } from "react"; import { Canvas, useFrame } from "@react-three/fiber"; import * as THREE from "three"; ... Read More

Making an axes helper in React using react-three-fiber

Ath Tripathi
Updated on 28-Sep-2021 12:13:54

2K+ Views

Axes helpers are used to show direction in three-dimensional figures when you apply any orbit control. Axes use the concept of coordinate geometry to show how to make shapes and make orbits for zooming, rotating, sliding, etc. They are really helpful while developing a 3D environment.ExampleFirst download the react-three-fiber package −npm i --save @react-three/fiber threethreejs and react-three/fiber will be used to add webGL renderer to the website. Three-fiber will be used to connect threejs and React.We will first make a cuboid and an orbit control for better viewAdd the following lines of code in App.js −import React, { useEffect } ... Read More

Advertisements