скроллинг | scrolling - Forum

Forum Navigation
You need to log in to create posts and topics.

скроллинг | scrolling

у меня не получается прослушать событие скроллинга и получить положение ползунка

I can't listen to the scroll event and get the position of the slider.

function pvv_scrolling_page(threshold, onTrue, onFalse) {
  if (typeof onTrue !== 'function') onTrue = () => {};
  if (typeof onFalse !== 'function') onFalse = () => {};

  function handleScroll() {
    if (window.scrollY > threshold) {
      onTrue();
    } else {
      onFalse();
    }
  }

  window.addEventListener('scroll', handleScroll);
}

 

@lolo try this:

function pvv_scrolling_page(threshold, onTrue, onFalse) {
  if (typeof onTrue !== 'function') onTrue = () => {};
  if (typeof onFalse !== 'function') onFalse = () => {};
  function handleScroll() {
    if (window.scrollY > threshold) {
      onTrue();
    } else {
      onFalse();
    }
  }
  window.addEventListener('scroll', neo.handleScroll);
}

 

lolo has reacted to this post.
lolo