如何延迟路口观察者API

时间:2020-05-14 16:54:53

标签: javascript settimeout intersection-observer

情况

我在页面顶部有一个固定的导航栏。向下滚动页面的不同部分时,导航栏会动态更新(下划线和突出显示)。您还可以单击导航栏上的一个部分,它将向下滚动到该部分。

这是通过使用相交观察器API来检测它所在的部分并使用scrollIntoView滚动到每个部分来完成的。

问题

假设您位于第1部分,然后单击最后一个部分5,它会将页面向下滚动到它们之间的所有其他部分。滚动速度很快,并且在滚动时所有交叉路口的观察者均会检测到所有断面,因此导航将被更新。最终,随着每个导航项经过相应的部分,导航项都会迅速发生变化。

目标

如果该部分仅在帧中存在毫秒,如何延迟相交观察器触发菜单更改?快速滚动时,导航栏应仅在部分停止滚动后才更新。

代码设置

const sectionItemOptions = {
  threshold: 0.7,
};

const sectionItemObserver = new IntersectionObserver((entries, observer) => {
  entries.forEach((entry) => {

    if (entry.isIntersecting) {
      // select navigation link corresponding to section

    } else {
      // deselect navigation link corresponding to section

    }
  });
}, sectionItemOptions);

// start observing all sections on page
sections.forEach((section) => {
  sectionItemObserver.observe(section);
});

想法

我的第一个想法是放置一个setTimeout,以便在超时完成之前导航不会改变,然后如果该部分在超时完成之前离开了屏幕,则取消该超时。但是由于超时处于forEach循环中,因此无法正常工作。

const sectionItemObserver = new IntersectionObserver((entries, observer) => {
  entries.forEach((entry) => {

    let selectNavTimeout

    if (entry.isIntersecting) {

      // Set timeout when section is scrolled past
      selectNavTimeout = setTimeout(() => {
        // select navigation link corresponding to section
      }, 1000)

    } else {
      // deselect navigation link corresponding to section
      // cancel timeout when section has left screen
      clearTimeout(selectNavTimeout)
    }
  });
}, sectionItemOptions);

任何其他想法将不胜感激!谢谢:)

3 个答案:

答案 0 :(得分:2)

我遇到了同样的问题。我最终使用了 setTimeout 方法。您需要将超时与条目目标相关联,前提是每个条目目标都有一些唯一的 ID。例如,假设我们将节点与 id 属性相交:

    let timeouts = {};
    const observer = new IntersectionObserver((entries, ob) => {
        for (const e of entries) {
            if (e.isIntersecting) {
                timeouts[e.target.id] = setTimeout(() => {
                    ob.unobserve(e.target)

                    // handling

                }, 1000)  // delay for 1 second
            } else {
                clearTimeout(timeouts[e.target.id])
            }
        }
    }, options)

答案 1 :(得分:0)

经过大量的头脑风暴,我想到了一个想法,该想法不能完全回答延迟Intersection Observer API的问题,但确实解决了导航栏闪烁的问题。

通过在其上添加“ is-active”类,然后对其应用CSS,来突出显示导航项。因为“ is-active”类仅在导航项目上显示一秒钟,所以您可以使用CSS关键帧来延迟CSS样式的应用。到延迟完成时,导航项上不存在“ is-active”类,并且样式也没有更改。

保持原始JS与使用的CSS相同

.is-active {
  animation: navItemSelected;
  animation-duration: 0.3s;
  // delay longer than the time nav item is in frame
  animation-delay: 0.1s;
  // fill mode to hold animation at the end
  animation-fill-mode: forwards;
}

@keyframes navItemSelected {
  // default non-selected style of nav item
  from {
    font-style: normal;
    opacity: 0.5;
  }
  // highlighted style of nav item
  to {
    font-style: italic;
    opacity: 1;
  }
}

答案 2 :(得分:0)

遇到同样的问题。根据这篇文章:https://web.dev/intersectionobserver-v2/,观察者 v2 允许您在观察者选项中设置延迟。在我的导航菜单情况下,延迟就像一个魅力:

const observer = new IntersectionObserver((changes) => {
  for (const change of changes) {
    // ⚠️ Feature detection
    if (typeof change.isVisible === 'undefined') {
      // The browser doesn't support Intersection Observer v2, falling back to v1 behavior.
      change.isVisible = true;
    }
    if (change.isIntersecting && change.isVisible) {
      visibleSince = change.time;
    } else {
      visibleSince = 0;
    }
  }
}, {
  threshold: [1.0],
  // ? Track the actual visibility of the element
  trackVisibility: true,
  // ? =====ANSWER=====: Set a minimum delay between notifications
  delay: 100
}));