是否可以指定在 fancyBox 3 中使用的过渡?我对 3 个转换感兴趣:
- 打开幻灯片/画廊
- 在幻灯片之间导航
- 关闭幻灯片/图库
默认情况下,fancyBox 3 对不同类型的内容使用不同的过渡。
<a href="img.jpg" data-fancybox><img src="thumb.jpg"></a> <!--This will zoom in-->
<a data-fancybox href="#html-content">Open</a> <!--This will fade in-->
<div id="html-content" style="display: none;">
<p>This content does just fades in.</p>
</div>
查看此codePen以了解它的运行情况,包括导航转换。对于图像,我们有:
- 放大
- 水平滑动
- 缩小
对于 html 内容,我们有:
- 淡入
- 水平滑动
- 消退
是否可以在 fancyBox 3 中更改此默认行为?例如让图像也淡入淡出?我无法在文档中找到这方面的任何信息。