How to have different plugins for carousel view and Fullscreen view? #812
|
Here is my need :
Then when user click on Fullscreen icon, display arrows and additional commands on toolbar. Is it possible? |
Answered by
fancyapps
Oct 28, 2025
Replies: 2 comments 4 replies
|
Hi, I think it would be more logical to open the image in Fancybox, and this is how you can start it in full screen mode: Fancybox.bind("[data-fancybox]", {
Carousel: {
Fullscreen: {
autoStart: true,
},
},
})https://output.jsbin.com/fopokiguro/ You should note that, for example, Fullscreen mode is not available on the iPhone at all. |
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment



You can use CSS media queries to check support -
@media (hover: hover) { .... }- and then just display your icon if not supported.