Fancybox 2.0 画廊模式的下一个和上一个方法
我正在使用 Fancybox 版本 2.04 并意识到仍然存在一些问题,但我正在尝试实现下一个和上一个方法来使用 ZoomIn ZoomOut 功能而不是默认向下滑动(我假设是 SlideDown 并且我确实觉得很棒)。
这是我正在使用的代码,但它似乎不起作用,它关闭了图层并且不会前进到图库中的下一张图像。
$('.zoom').fancybox({
nextMethod: 'zoomIn',
prevMethod: 'zoomOut',
helpers : {
overlay : {
css : {
'background-color' : '#fff'
}
}
}
});
I'm using Fancybox version 2.04 and a realize there are still a couple issues but I am trying to implement the next and previous methods to use the zoomIn ZoomOut functionality instead of the Default slide down (which I'm assuming is the slideDown and I do think is awesome).
Here's the code I'm using but it isn't seeming to work, it closes the layer and doesn't progress to the next image in the gallery.
$('.zoom').fancybox({
nextMethod: 'zoomIn',
prevMethod: 'zoomOut',
helpers : {
overlay : {
css : {
'background-color' : '#fff'
}
}
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
希望我能提供帮助,但当我尝试 ZoomIn + ZoomOut 时,我遇到了同样的问题。
我正在寻找一种方法来对覆盖层的父容器进行平滑的动画调整大小,这就是 Fancybox V1 的工作方式。但运气不好。我认为幻灯片效果(误导性地称为“弹性”)太艳丽了。 “无”设置太突然,“淡入淡出”设置在加载下一张幻灯片之前一直淡出,显示背景内容。
希望在未来的版本中能够提供更多的选择。
Wish I could help but I get the same problem when I try zoomIn + zoomOut.
I was searching for a way to make a smooth animated resize of the overlay's parent container, which was the way that Fancybox V1 worked. No luck though. I think the slide effect (misleadingly called 'elastic') is too showy. The 'none' setting is too abrupt, and the 'fade' setting fades out all the way before loading the next slide, showing the background content.
Hopefully more options will be provided in future versions.