Jānis Skarnelis

Results 157 comments of Jānis Skarnelis

Well, since there don't seem to be any new reports of issues with this, I assume it's working fine now.

Hello, everyone! After a year of full time work, v5 is finally here, and it provides transition effects - https://fancyapps.com/fancybox/#examples

Hi, Here you can find links to past releases - https://fancyapps.com/resources/releases/ Sorry, but there are no plans to make it more modular, it would be a maintenance nightmare and would...

Hi, It should work fine on v5. If you experience any issue, please, post new issue.

Hi, Starting from v5, you can add new slides like this: ```js Fancybox.getInstance().carousel.appendSlide({ src : "https://lipsum.app/id/1/800x600", type: "image"}); ``` However, currently the thumbnails are not synchronized, but this is planned...

As of v5.0.25, it is possible to create a gallery with an infinite number of items, and thumbnails are synchronized. Here are two possible solutions. ### 1. Solution Add new...

Hi, Thank you for your work, typescript definitions are available in v5.

Hi, It should work much better on v5. If you experience issues, please, open new issue.

@oliversmiths Here is an example: ```JS Fancybox.bind('[data-fancybox]', { on: { load: (fancybox, slide) => { slide.$content.addEventListener("contextmenu", (e) => { e.preventDefault() }); } } }); ```

Hi, `protected` option is now available in v5, use it like this: ```js Fancybox.bind('[data-fancybox="gallery"]', { Images : { protected: true } }); ``` https://jsfiddle.net/vaqhwy1L/