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

235
Visualizações
How to check if lowest part of div is visible in viewport?

What is the formula to check if the lowest part of the div is visible in the viewport? It doesn't matter upper half is visible or gets hidden while scrolling the div

about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

You can use IntersectionObserver to recognise if something is on screen. If you make a placeholder and magnetise it to the bottom of a parent div then you can make it possible.

But if you don't want to use IntersectionObserver API you can try getBoundingClientRect() + window.innerHeight like shown below:

const targetEl = document.querySelector('#target');
const windowsHeight = window.innerHeight;

// I heartily recommend to use some kind of throttling (lo-dash.throttle) here to reduce amount of callback executions
document.addEventListener('scroll', () => {
  const bottom = targetEl.getBoundingClientRect().bottom;
  
  if (windowsHeight > bottom) {
    console.log('bottom is visible');
  } else {
    console.log('bottom is hidden');
  }
})
/* All css are just for the demo, you only need a JS code */
body {
  padding: 300px 20px;
}

#target {
  height: 2000px;
  width: 100%;
  background-color: gray;
}
<div id="target">
  content here
</div>

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