Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

159
Views
Best way to use a placeholder image and then replace it after the image finishes loading?

Currently the google static maps https://developers.google.com/maps/documentation/maps-static/overview takes too long to load which causes a high LCP(large content painting).

The solution would be to load a placeholder image and then once the google static maps IMG is finished loading to replace the placeholder with it. What would be a way to implement this?

I did try this but it didn't replace the placeholder and always returned false.

function imgLoaded(imgElement) {
  return imgElement.complete && imgElement.naturalHeight !== 0;
}
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

A simple but effective solution is to use the onLoad event to update a state and toggle the placeholder visibility, like so:

import { useState } from "react";

const LOADING_GIF_URL = `https://i.stack.imgur.com/kOnzy.gif`;
const LARGE_IMAGE_URL = `https://upload.wikimedia.org/wikipedia/commons/f/ff/Pizigani_1367_Chart_10MB.jpg`;

export default function App() {
  
  const [imageLoaded, setImageLoaded] = useState(false);

  return (
    <div>
      {
        !imageLoaded ?
          <img alt="Loading" src={LOADING_GIF_URL} style={{ width: `50px` }} />
        :
          `Clear your cache and refresh the page to reload the image`
      }

      <img
        alt="Large pic"
        src={LARGE_IMAGE_URL}
        style={imageLoaded ? {} : { display: `none` }}
        onLoad={() => setImageLoaded(true)}
      />
    </div>
  );
}

See this codesandbox

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!