我们通过传递内容来手动加载fancybox:
$.fancybox({
content: content,
showCloseButton: false,
transitionIn: 'fade',
transitionOut: 'fade',
speedIn: 600,
padding: 0,
fixed: false
});
我们希望fancybox在首次加载(绝对定位)后保持与文档相关的位置。
将fixed设置为false会使fancybox在滚动期间弹性地保留在屏幕的中心。我们真的很喜欢fancybox:
有什么想法吗?
答案 0 :(得分:0)
想出来,你还需要将autoCenter设置为false,如下所示:
$.fancybox({
content: content,
showCloseButton: false,
transitionIn: 'fade',
transitionOut: 'fade',
speedIn: 600,
padding: 0,
fixed: false,
autoCenter: false
});