fancyapps / ui

A library of JavaScript UI components, includes the best lightbox - Fancybox5
https://fancyapps.com/
Other
820 stars 99 forks source link

remove scrolling #708

Closed fetfurmoz1985 closed 2 weeks ago

fetfurmoz1985 commented 2 weeks ago

How to remove scrolling? https://g1t.ru/video/chrome_T468Ri5iPt.mp4

https://codepen.io/xvjelsst-the-reactor/pen/VwoENPr

fancyapps commented 2 weeks ago

First of all, I don't see any scrolling here. I'm guessing you want to disable dragging? Then here's a snippet:

Fancybox.bind('[data-fancybox="popup"]', {
  Carousel: {
    Navigation: false,
    Panzoom : {
      touch: false
    }
  },
});
fetfurmoz1985 commented 2 weeks ago
Fancybox.bind('[data-fancybox="popup"]', {
  Carousel: {
    Navigation: false,
    Panzoom : {
      touch: false
    }
  },
});

Excellent, thank you