Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

117
Visualizações
Load image before the other content of the HTML

My website is simple one page. a big full page image and 10 line text and some links like privacy policy, terms etc.

So, when my website load. text load first before image which decrease the user experience. i want image load first before the other content of the page.

My Code :

<link rel="preload" href="//www.example.com/one/img/ckd.png" as="image">
<link rel="prefetch" href="//www.example.com/one/img/ckd.png" />
about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

You can start with hidden text, and onload of the image, make it visible. Note: this might have negative impact on PageSpeed test because time to content would be increased. Test this with throttle on network (Devtools, Network tab) and on Lighthouse tab.

<link rel="preload" href="https://picsum.photos/id/237/200/300" as="image">
<link rel="prefetch" href="https://picsum.photos/id/237/200/300" />
<style>
  body.hide-text h1 {
    visibility: hidden
  }
  
  h1 {
    font-size: 30px;
    color: white;
    padding: 50px;
  }
  
  img {
    position: absolute;
    z-index: -1;
  }
</style>

<body class="hide-text">
  <img src="https://picsum.photos/id/237/400/300" onload="show_text()">
  <h1>hello world</h1>


  <script>
    function show_text() {
      document.body.classList.remove("hide-text");
    }
  </script>
</body>

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda