我试图在滚动到某个元素时删除滚动事件侦听器。我想做的是在视口中有某些元素时调用click事件。问题是单击事件一直保持调用状态,或者在第一次调用后一直没有调用。 (对不起-难以解释),我想删除滚动事件以停止调用click函数。
我的代码:
window.addEventListener('scroll', () => {
window.onscroll = slideMenu;
// offsetTop - the distance of the current element relative to the top;
if (window.scrollY > elementTarget.offsetTop) {
const scrolledPx = (window.scrollY - elementTarget.offsetTop);
// going forward one step
if (scrolledPx < viewportHeight) {
// console.log('section one');
const link = document.getElementById('2');
if (link.stopclik === undefined) {
link.click();
link.stopclik = true;
}
}
// SECOND STEP
if (viewportHeight < scrolledPx && (viewportHeight * 2) > scrolledPx) {
console.log('section two');
// Initial state
let scrollPos = 0;
window.addEventListener('scroll', () => {
if ((document.body.getBoundingClientRect()).top > scrollPos) { // UP
const link1 = document.getElementById('1');
link1.stopclik = undefined;
if (link1.stopclik === undefined) {
link1.click();
link1.stopclik = true;
}
} else {
console.log('down');
}
// saves the new position for iteration.
scrollPos = (document.body.getBoundingClientRect()).top;
});
}
if ((viewportHeight * 2) < scrolledPx && (viewportHeight * 3) > scrolledPx) {
console.log('section three');
}
const moveInPercent = scrolledPx / base;
const move = -1 * (moveInPercent);
innerWrapper.style.transform = `translate(${move}%)`;
}
});
答案 0 :(得分:2)
您只能删除外部函数上的事件侦听器。您不能像以前那样删除匿名函数上的事件侦听器。
替换此代码
window.addEventListener('scroll', () => { ... };
然后改为执行
window.addEventListener('scroll', someFunction);
然后将函数逻辑移入函数
function someFunction() {
// add logic here
}
然后,当满足某些条件(即元素在视口中)时,您可以删除点击侦听器
window.removeEventListener('scroll', someFunction);
答案 1 :(得分:1)
与其监听滚动事件,不如尝试使用Intersection Observer (IO)监听滚动事件并计算每次滚动中元素的位置可能会降低性能。使用IO,只要页面上的两个元素相交或与视口相交,就可以使用回调函数。
要使用IO,首先必须指定IO选项。由于您要检查元素是否在视图中,因此请忽略root
元素。
let options = {
rootMargin: '0px',
threshold: 1.0
}
let observer = new IntersectionObserver(callback, options);
然后您指定要观看的元素:
let target = slideMenu; //document.querySelector('#oneElement') or document.querySelectorAll('.multiple-elements')
observer.observe(target); // if you have multiple elements, loop through them to add observer
最后,您必须定义元素在视口中后应该发生的情况:
let callback = (entries, observer) => {
entries.forEach(entry => {
// Each entry describes an intersection change for one observed
// target element:
});
};
如果您不再需要观察者,也可以unobserve an element。
选中此polyfill from w3c以支持旧版浏览器。