在Fancybox 2.0(使用NextGen Gallery)中,弹性选项使图像从屏幕中心显示,而不是图像原点
我希望它看起来像示例中的图像位置。我已经从示例中获得了确切的代码,但没有得到预期的结果
网站: http://www.beerpong.kevindaniels.net/competitive-beer-pong/wsobp-archive/wsobp-7/
编辑:我的代码(从评论中删除)
jQuery('.fancybox').fancybox({
openEffect: 'elastic',
openSpeed: 150,
closeEffect: 'elastic',
closeSpeed: 150,
prevEffect: 'none',
nextEffect: 'none',
closeBtn: false,
helpers: {
title: {
type: 'inside'
},
buttons: {}
},
afterLoad: function () {
this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : '');
}
}).removeAttr("title");
答案 0 :(得分:1)
添加此选项:'orig': $(this)
它将效果的原点设置为被单击的元素。