Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如您所知,移动设备上的 FancyBox 3 允许通过向上/向下滑动来关闭弹出窗口。我们怎样才能通过点击手机屏幕来关闭它呢?如果可以的话当然可以。
谢谢。
例如,您可以使用clickContent选项:
clickContent
$('[data-fancybox]').fancybox({ clickContent : function( current, event ) { return current.type === 'image' ? 'zoom' : 'close'; } });
使用此片段,单击图像将缩放,但其他内容 - 关闭。
演示 - https://codepen.io/anon/pen/WEKmoB