Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

166
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda