• When I open my gallery on an iPad or iPhone I mentioned some issues.

    For instance, I’m still able to scroll true the images although one of the images is opened?
    An other ‘problem’ is that I’m not able to swipe to the next image.

    Is there a possibility to solve these questions?

    Thanks in advance.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey! Could you possibly post a link to your site? That would help a bunch in determining the best solution for your problem!

    Thanks!

    Hey,
    1. Do you mean scrolling on the page behide the image? That is supposed to be this way using the themes lightbox. When the image is in lightbox it doesn’t lock the scroll.

    2. Swiping in Lightbox isn’t added because the lightbox author wanted to preserve touch options like “zooming” since the point of the lightbox was to see it close up.
    There is some workarounds for this if you add some javascript to your site. YOu would need to add this jquery plugin: https://labs.rampinteractive.co.uk/touchSwipe/demos/

    Then a script that looks like this into a footer text widget.

    <script type="text/javascript">
    jQuery(document).ready(function ($) {
    $("body").swipe({
            swipeLeft: function(event, direction, distance, duration, fingerCount) {
                $(".mfp-arrow-left").magnificPopup("prev");
            },
            swipeRight: function() {
                $(".mfp-arrow-right").magnificPopup("next");
            },
            threshold: 50
        });
    });
    </script>

    Else you could use a different lightbox plugin.

    Kadence Themes

    Thread Starter Wohoo123

    (@wohoo123)

    Okay, I’ll look for an other lightbox plugin.

    Thanks for your support.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Mobile Responsive Gallery’ is closed to new replies.