Scrolling en fancy box does not work on iPhone or iPad

When I open the page on iPhone or iPad, fancybox scrolling does not work. On the other hand, it works in IE, Firefox, Chrome, Safari (PC and Mac) and Android (phone or tablet).

This is the page that clicks the bottom saber.

thanks

+4
source share
2 answers

This will work if you use two fingers or in iOS5 you can do:

overflow: scroll; -webkit-overflow-scrolling: touch; 

Lightboxes are not very pleasant for mobile users.

+6
source

I had the same problem, it was my solution, I added this to my css

 #fancybox-inner{ -webkit-overflow-scrolling: touch; } 
+1
source

Source: https://habr.com/ru/post/1384984/


All Articles