Fancybox iframe不在页面中央

时间:2012-08-30 05:59:02

标签: php iframe fancybox

我正在使用fancybox iframe显示内容,但每当我滚动页面页面时,Iframe不在页面的中心。我希望在滚动时,iframe将始终位于页面的中心。我正在使用这个脚本。

$("#various2").fancybox({
  width: 520,
  height: 550,
  autoScale: false,
  transitionIn: 'none',
  transitionOut: 'none',
  type: 'iframe',
  scrolling: 'no',
  centerOnScroll: 'true',
  autoCenter: 'true'
});

任何人都可以帮助我。

提前致谢

1 个答案:

答案 0 :(得分:2)

我不确定,但通过查看您的代码,我可以看到您输入的布尔值为字符串 -

$("#various2").fancybox({
  width: 520,
  height: 550,
  autoScale: false,
  transitionIn: 'none',
  transitionOut: 'none',
  type: 'iframe',
  scrolling: 'no',
  centerOnScroll: true, // and not 'true',
  autoCenter: true // and not 'true'
});