FancyBox: iPAD needs DoubleClick to Advance to Next Image

后端 未结 5 1556
清酒与你
清酒与你 2021-01-29 02:01

I have some galleries on http://rockcitybless.com which work perfectly in IE, Chrome and the desktop versions of Safari, Firefox and others.

But on iPa

5条回答
  •  礼貌的吻别
    2021-01-29 02:22

    Touch events cause issues. This definitely a bit of a hack but works well:

    $(target).on('touchend', function(e) {
        $(this).trigger('click');
    });
    

提交回复
热议问题