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

164
Vistas
How to tell if element is currently actively scrolling

I'd like to stop certain things from happening while an element is being scrolled. Scrolling may start when the mouse wheel / mouse pad is used, but it may also happen from a scrollIntoView() being called. Is there a way to tell if an element is currently being scrolled directly from that element?

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

Here is a function that helps you to detect scrolling with debounce and you can start to invoke any function after a set timer.

let timeOut;
function debounce(delay) {
  console.log("It's rolling!");
  clearTimeout(timeOut);
  timeOut= setTimeout(function(){
    console.log("It's stopped!");
  }, delay);
}

document.querySelector("#scrollable").addEventListener('scroll',(function() {
  debounce(200);
}));
div {
  border: 1px solid black;
  width: 200px;
  height: 100px;
  overflow: scroll;
}
<div id="scrollable">In my younger and more vulnerable years my father gave me some advice that I've been turning over in my mind ever since.
<br><br>
'Whenever you feel like criticizing anyone,' he told me, just remember that all the people in this world haven't had the advantages that you've had.'</div>

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