fancyapps / ui

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

fancybox youtube video issue #515

Closed amrithrajnalam closed 1 year ago

amrithrajnalam commented 1 year ago

fancybox youtube video how to make autoplay stop

 Fancybox.bind('[data-fancybox="gallery"]', {
    Thumbs: false,

    Iframes: {
      iframeAttr: {
        scrolling : 'no',
      }

}

});

in the above code scrolling : no is not applying for iframe

fancyapps commented 1 year ago

Hi,

Here's a demo on how to disable autoplay - https://jsfiddle.net/6ag1wcxv/

Fancybox.bind('[data-fancybox]', {
  Html : {
    videoAutoplay : false
  }
});