Jump to content
Search Community

Dayonel

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by Dayonel

  1. Thanks for the tip, I didn't know it exist. I have tried it and it definitely fixes the issue "scrolling event not firing" in a cleaner way. But then the scroll event triggers less times and feels very weird. Without normalizeScroll() it fired 105 times in the interval of 0 - 6% page scroll (in my personal project) and when I used normalizeScroll() it triggered 6 times. Is there a way to fix that?
  2. Hi, I just ran into this issue too and I would like to share my solution. As the admins already said, use pinType: 'fixed', vibration is then gone ScrollTrigger.create({ scroller: '#main', // custom scroller pin: '.pin', // pinned pinType: 'fixed', // transform fixed ... }); As the user said, I had this exact same problem: In case you miss it in the question, this is solved with this CSS: .pin-spacer { pointer-events: none; } Unfortunately for this specific case the button is not clickable but, otherwise this work for all cases.
×
×
  • Create New...