繁体   English   中英

如何删除滚动事件监听器?

[英]How to remove scroll event listener?

当我滚动到某个元素时,我试图删除滚动事件监听器。 我想做的是当某些元素在视口中时调用点击事件。 问题是点击事件一直在调用,或者在第一次调用之后根本不调用。 (抱歉 - 难以解释)我想删除滚动事件以停止调用点击 function。

我的代码:

   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}%)`;
        }
    });

您只能删除外部函数上的事件侦听器。 您不能像以前那样删除匿名函数上的事件侦听器。

替换此代码

window.addEventListener('scroll', () => { ... };

并改为这样做

window.addEventListener('scroll', someFunction);

然后将函数逻辑移到函数中

function someFunction() {
  // add logic here
}

然后,当满足某些条件时(即,元素在视口中时),可以删除单击侦听器

window.removeEventListener('scroll', someFunction);

与其侦听滚动事件,不如尝试使用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:
  });
};

如果您不再需要观察者,也可以取消观察元素

从w3c选中此polyfill以支持较旧的浏览器。

这是我的场景/代码,在useEffect挂钩中将removeEventListener调用为return()

  const detectPageScroll = () => {
    if (window.pageYOffset > YOFFSET && showDrawer) {
      // do something
    }
  };

  React.useEffect(() => {
    if (showDrawer) {
      window.addEventListener("scroll", detectPageScroll);
    }
    return () => {
      window.removeEventListener("scroll", detectPageScroll);
    };
  }, [showDrawer]);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM