Quote from
lolo on December 28, 2025, 10:01 am
у меня не получается прослушать событие скроллинга и получить положение ползунка
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);
}
у меня не получается прослушать событие скроллинга и получить положение ползунка
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);
}