FancyBox: iPAD needs DoubleClick to Advance to Next Image

后端 未结 5 1557
清酒与你
清酒与你 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:24

    It seems to be a problem in iOS when setting the visibility to hidden. If we set this to visible and adjust the opacity instead then this should keep the same functionality.

    Add this to your CSS file:

      .fancybox-nav span {
            visibility: visible !important;
            opacity: 0;
        }
    
        .fancybox-nav:hover span {
            opacity: 1;
        }
    

提交回复
热议问题