Author -  Sai gowtham

How to add Images in React.js

In this tutorial, we are going to learn about how to add images and background images in the react app with the help of examples.

Adding images to components

In react components, we can import images just like JavaScript modules where webpack includes that image file in a bundle and returns the final path of an image.

Example:

App.js
import React from 'react';
import car from './images/car.jpg'; // gives image path
function App(){
    return(
        <div>
             <img src={car} alt="this is car image" />        </div>
    )
}

export default App;

To reduce network requests and improve web performance importing images that are less than 10,000 bytes returns a data URI instead of a path.

Adding background images in CSS

.app{
    background-image: url(./images/car.jpg);
}

By adding the relative path of an image in CSS, webpack replaces them with a final path from the compiled bundle.

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY