NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

intersection.js 436B

123456789101112131415161718192021
  1. class IntersectionHandler {
  2. constructor() {
  3. this.el = null
  4. this.observer = null
  5. }
  6. setEl(el) {
  7. this.el = el
  8. }
  9. setObserver(onIntersect) {
  10. this.observer = new IntersectionObserver(onIntersect, {
  11. threshold: 0.80
  12. })
  13. }
  14. start() {
  15. this.observer.observe(this.el)
  16. }
  17. }
  18. const intersectionHandler = new IntersectionHandler()
  19. export { intersectionHandler }