Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

104
Views
Trigger IntersectionObserver before in view

I'm trying to do a simple infinite scroller, but I really can't get it to trigger BEFORE the footer on the page is visible. Is it possible?

I thought setting the rootMargin would do it, but the observer function does not seem to get fired.

I'm using VueJS. Here is part of the footer component:

      mounted () {
        this.observer = new IntersectionObserver(this.handleIntersect, {
          root: null,
          rootMargin: '500px 0px',
          threshold: 0,
        })
        this.observer.observe(this.$el)
      },

      destroyed () {
        this.observer?.disconnect()
      },

      methods: {
        handleIntersect ([entry]) {
          console.log('entry:', entry.boundingClientRect.top)
        }
      },
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

I couldn't figure out a way to do this, so I worked around it by making the element position:relative and adding an element position:absolute top:-500px left:0 bottom:-500px right:0 and putting the IntersectionObserver on that instead

<div class="position:relative">
    <div style="position:absolute;top:-500px;left:0;bottom:-500px;right:0;transform:scale(150%);pointer-events:none;"></div>
    … content
</div>
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!